# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
443159 | penguinhacker | Go (COCI16_go) | C++14 | 1 ms | 320 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
#define ar array
int main() {
ios::sync_with_stdio(0);
cin.tie(0);
int n;
cin >> n;
int ans1=0, best=-1;
string ans2;
while(n--) {
string s;
int a, b, cur=0;
cin >> s >> a >> b;
while(b>=a)
b+=-a+2, ++cur;
ans1+=cur;
if (cur>best)
best=cur, ans2=s;
}
cout << ans1 << "\n" << ans2;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |