# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
24471 | toonewbie | Go (COCI16_go) | C++14 | 0 ms | 2020 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define intt long long
#define forn(i,n) for(i=0;i<n;i++)
#define rforn(i,n) for(i=n-1;i>=0;i--)
#define FAST_READ ios_base::sync_with_stdio(false)
#define r0 return 0
using namespace std;
intt n,m,k,evo=0,maxi=-1,i,cnt;
int main()
{
string s,maxevo;
cin>>n;
while(n){
cnt=0;
cin>>s;
cin>>m>>k;
while(k>=m){
k-=m;k+=2;
cnt++;
}
if(cnt>maxi){maxevo=s;maxi=cnt;}
evo+=cnt;
n--;
}
cout<<evo<<endl<<maxevo<<endl;
r0;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |