# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
355977 | vaaven | 돌 무게 재기 (IZhO11_stones) | C++14 | 1 ms | 364 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <iostream>
#include <vector>
#include <algorithm>
#include <iomanip>
#include <tuple>
#include <math.h>
#include <set>
#include <stack>
#include <bitset>
#include <map>
#include <cassert>
#include <queue>
#include <random>
#include <unordered_set>
#include <unordered_map>
#define pqueue priority_queue
#define pb(x) push_back(x)
// #define endl '\n'
#define all(x) x.begin(), x.end()
#define int long long
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
typedef long double ld;
typedef vector<int> vi;
typedef vector<vector<int> > vvi;
// typedef tuple<ll, ll, ll> tiii;
typedef pair<int, int> pii;
typedef vector<pair<int, int> > vpii;
typedef vector<bool> vb;
typedef vector<string> vs;
typedef vector<char> vc;
const int inf = 1e9 + 228;
const ll mod = 1e9 + 7;
const ll mod2 = 998244353;
const ld eps = 1e-5;
void fast_io(){
ios_base::sync_with_stdio(0);
cin.tie(0);
// freopen("grass.in", "r", stdin);
// freopen("grass.out", "w", stdout);
}
void solve(){
int n;
cin >> n;
int a, b;
a = b = 0;
for(int i=0; i<n; i++){
int t, k;
cin >> t >> k;
if(k == 1){
a += t;
} else{
b += t;
}
if(a > b){
cout << ">" << endl;
} else if(a < b){
cout << "<" << endl;
} else{
cout << "?" << endl;
}
}
}
signed main(){
fast_io();
// srand(time(NULL));
cout << fixed;
int q = 1;
while(q--)
solve();
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |