# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
9011 | 2014-09-27T10:33:24 Z | joonas | Penalty calculation (kriii2_PE) | C++ | 0 ms | 1088 KB |
#include <cstdio> int main(){ int T[101], S[101]; int i, N, P=0, maxIndex=0, maxS=0; scanf("%d", &N); for(i=0; i < N; ++i){ scanf("%d %d", &T[i], &S[i]); if(S[i] > maxS) maxIndex = i+1; if(S[i] >= maxS) maxS = T[i]; } P = maxIndex < 1 ? 0 : maxS + (maxIndex-1)*20; printf("%d", P); return 0; }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Correct | 0 ms | 1088 KB | Output is correct |
2 | Incorrect | 0 ms | 1088 KB | Output isn't correct |
3 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Halted | 0 ms | 0 KB | - |