# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
86991 | 2018-11-29T05:20:35 Z | abil | 돌 무게 재기 (IZhO11_stones) | C++14 | 3 ms | 256 KB |
/** Solution by Abil **/ #include <bits/stdc++.h> using namespace std; const int N = 300000 + 12; int x[N],y[N]; map<int,int > mpx,mpy; int main() { int n,ans1 = 0,ans2 = 0; cin >> n; int ves,dir; while(n--){ cin >> ves >> dir; if(dir == 1){ ans1 += ves; } else{ ans2 += ves; } if(ans1 == ans2){ cout << "?" << endl; } else if(ans1 > ans2){ cout << ">" << endl; } else{ cout << "<" << endl; } } }
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 3 ms | 256 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |