結果

問題 No.2030 Googol Strings
ユーザー t98slidert98slider
提出日時 2022-08-06 12:03:46
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 44 ms / 2,000 ms
コード長 374 bytes
コンパイル時間 1,551 ms
コンパイル使用メモリ 168,768 KB
実行使用メモリ 10,008 KB
最終ジャッジ日時 2024-09-16 08:21:17
合計ジャッジ時間 3,351 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
5,248 KB
testcase_01 AC 19 ms
5,376 KB
testcase_02 AC 16 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 31 ms
5,376 KB
testcase_05 AC 15 ms
5,376 KB
testcase_06 AC 35 ms
9,084 KB
testcase_07 AC 44 ms
10,008 KB
testcase_08 AC 44 ms
10,008 KB
testcase_09 AC 20 ms
5,376 KB
testcase_10 AC 20 ms
5,376 KB
testcase_11 AC 20 ms
5,376 KB
testcase_12 AC 38 ms
5,376 KB
testcase_13 AC 31 ms
5,376 KB
testcase_14 AC 19 ms
5,376 KB
testcase_15 AC 34 ms
5,376 KB
testcase_16 AC 39 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    int Q;
    cin >> Q;
    while(Q--){
        string s, t, u, v;
        cin >> s >> t;
        u = s + t;
        v = t + s;
        if(u != v){
            cout << (u > v ? 'X' : 'Y') << '\n';
        }else{
            cout << (s.size() > t.size() ? 'X' : 'Y') << '\n';
        }
    }
}
0