Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
81585 陈路垚 cafe C++ 通过 100 37 MS 248 KB 179 2023-08-09 16:27:04

Tests(25/25):


#include<bits/stdc++.h> using namespace std; int main(){ int n,a,b,c=0,d=INT_MAX; cin>>n; while(n--){ cin>>a>>b; c+=a; d=min(d,b); } cout<<c+d; return 0; }


测评信息: