# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
974253 | 2024-05-03T06:52:01 Z | vjudge1 | Ljeto (COCI21_ljeto) | C++17 | 0 ms | 348 KB |
#include<bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int ev[n][3]; for(int i = 1; i <= n; i++){ cin >> ev[i][0] >> ev[i][1] >> ev[i][2]; } int skA, skB, idx; for(int i = 1; i <= n; i++){ if(ev[i][1] >= 1 && ev[i][1] <= 4){ skA += 100; idx = 0; } else{ skB += 100; idx = 1; } if(i > 1 && ev[i][0] <= ev[i-1][0]+10 && ev[i][1] == ev[i-1][1]){ if(idx) skB += 50; else skA += 50; } } cout << skA << " " << skB << endl; return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 348 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |