結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | mioupa |
提出日時 | 2021-03-29 02:48:13 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 672 bytes |
コンパイル時間 | 2,360 ms |
コンパイル使用メモリ | 202,552 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-05-06 23:04:30 |
合計ジャッジ時間 | 5,731 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
ソースコード
#include <bits/stdc++.h> #include <iostream> #include <string> #include <stdio.h> #include <math.h> #define rep(i, n) for (int i = 0; i < n; i++) #define ll long long #define be(x) x.begin(), x.end() using namespace std; int main() { int n,q; string s,t; cin >> n >> s >> t >> q; rep(i,q){ string c; int x,y; cin >> c >> x >> y; if(c=="S"){ s[x-1] = y; } else{ t[x-1] = y; } ll san = stoll(s); ll tan = stoll(t); if(san>tan) cout <<">"<<endl; else if (san==tan) cout << "="<<endl; else cout<<"<"<<endl; } return 0; }