Submission #443159

#TimeUsernameProblemLanguageResultExecution timeMemory
443159penguinhackerGo (COCI16_go)C++14
50 / 50
1 ms320 KiB
#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 timeMemoryGrader output
Fetching results...