結果

問題 No.2030 Googol Strings
ユーザー lloyzlloyz
提出日時 2023-08-26 18:38:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 245 ms / 2,000 ms
コード長 330 bytes
コンパイル時間 651 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 218,588 KB
最終ジャッジ日時 2024-06-07 14:11:10
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
77,016 KB
testcase_01 AC 73 ms
75,292 KB
testcase_02 AC 99 ms
102,600 KB
testcase_03 AC 38 ms
52,072 KB
testcase_04 AC 159 ms
76,996 KB
testcase_05 AC 79 ms
72,572 KB
testcase_06 AC 194 ms
177,756 KB
testcase_07 AC 245 ms
218,588 KB
testcase_08 AC 244 ms
218,468 KB
testcase_09 AC 127 ms
78,464 KB
testcase_10 AC 128 ms
78,172 KB
testcase_11 AC 124 ms
77,348 KB
testcase_12 AC 199 ms
76,544 KB
testcase_13 AC 188 ms
78,976 KB
testcase_14 AC 97 ms
76,500 KB
testcase_15 AC 205 ms
118,344 KB
testcase_16 AC 220 ms
166,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

for _ in range(int(input())):
    S = list(input().rstrip())
    T = list(input().rstrip())
    n, m = len(S), len(T)
    ST = S + T
    TS = T + S
    if ST > TS:
        print('X')
    elif ST < TS:
        print('Y')
    else:
        if n > m:
            print('X')
        else:
            print('Y')
0