結果
問題 | No.1439 Let's Compare!!!! |
ユーザー | ninoinui |
提出日時 | 2021-03-26 22:03:38 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,431 bytes |
コンパイル時間 | 2,426 ms |
コンパイル使用メモリ | 203,260 KB |
実行使用メモリ | 13,768 KB |
最終ジャッジ日時 | 2024-11-28 23:14:47 |
合計ジャッジ時間 | 21,169 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 2 ms
9,984 KB |
testcase_02 | AC | 2 ms
12,064 KB |
testcase_03 | AC | 2 ms
9,856 KB |
testcase_04 | AC | 2 ms
10,112 KB |
testcase_05 | AC | 2 ms
11,808 KB |
testcase_06 | AC | 2 ms
10,112 KB |
testcase_07 | AC | 2 ms
11,684 KB |
testcase_08 | AC | 3 ms
12,192 KB |
testcase_09 | AC | 2 ms
10,240 KB |
testcase_10 | AC | 40 ms
10,112 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | AC | 40 ms
6,820 KB |
testcase_14 | AC | 39 ms
6,820 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
ソースコード
#pragma GCC diagnostic warning "-Wextra" #pragma GCC diagnostic warning "-Wshadow" #include <bits/stdc++.h> using namespace std; template <class A, class B> bool cmin(A& a, B b) { return a > b && (a = b, true); } template <class A, class B> bool cmax(A& a, B b) { return a < b && (a = b, true); } template <class A, class B> ostream& operator<<(ostream& os, pair<A, B>& p) { return os << '(' << p.first << ", " << p.second << ')'; } static bool debug = false; void dump() {} template <class A, class... B> void dump(A&& a, B&&... b) { if (debug) cout << a << (sizeof...(b) ? ' ' : '\n'), dump(b...); } template <class A> void dump1D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) cout << *i << (next(i) != a.end() ? ' ' : '\n'); } template <class A> void dump2D(A& a) { if (debug) for (auto i = a.begin(); i != a.end(); i++) dump1D(*i), cout << (next(i) != a.end() ? "" : "\n"); } signed main() { cin.tie(nullptr)->sync_with_stdio(false); // debug = true; int N; cin >> N; vector<int> S(N), T(N); for (int i = 0; i < N; i++) { char c; cin >> c; S.at(i) = c - '0'; } for (int i = 0; i < N; i++) { char c; cin >> c; T.at(i) = c - '0'; } dump1D(S); dump1D(T); int Q; cin >> Q; while (Q--) { char a; int b, c; cin >> a >> b >> c, b--; if (a == 'S') S.at(b) = c; else T.at(b) = c; cout << ((S > T) ? '>' : (S < T) ? '<' : '=') << '\n'; } }