| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 81578 | 桑迪 | cafe | C++ | Accepted | 100 | 32 MS | 252 KB | 162 | 2023-08-09 16:23:14 |
#include<bits/stdc++.h> using namespace std; int n,a,b,t1,t2=110; int main(){ cin>>n; while(n--)cin>>a>>b,t1+=a,t2=min(t2,b); cout<<t1+t2; return 0; }