# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
397606 | victoriad | Go (COCI16_go) | C++14 | 1 ms | 316 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 <cmath>
#include <cstdio>
#include <vector>
#include <iostream>
#include <algorithm>
#include <utility>
#include <queue>
#include <map>
#include <iomanip>
#include <fstream>
using namespace std;
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
int n;
cin>>n;
string s,b;
int a,max=0,c=0,x,y;
string m;
for(int i=0;i<n;i++){
a=0;
cin>>b;
cin>>x>>y;
while(y>=x){
a++;
y=y-x+2;
}
c+=a;
if(a>max){
max=a;
s=b;
}
}
cout<<c<<"\n";
cout<<s;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |