結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-06-30 15:47:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 280 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,392 KB
実行使用メモリ 77,252 KB
最終ジャッジ日時 2024-05-09 21:09:33
合計ジャッジ時間 1,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
76,532 KB
testcase_01 AC 39 ms
61,440 KB
testcase_02 AC 35 ms
58,880 KB
testcase_03 AC 31 ms
51,968 KB
testcase_04 AC 110 ms
76,928 KB
testcase_05 AC 37 ms
59,776 KB
testcase_06 AC 42 ms
66,560 KB
testcase_07 AC 47 ms
71,680 KB
testcase_08 AC 48 ms
71,936 KB
testcase_09 AC 40 ms
65,408 KB
testcase_10 AC 39 ms
65,928 KB
testcase_11 AC 41 ms
65,664 KB
testcase_12 AC 114 ms
77,056 KB
testcase_13 AC 94 ms
77,252 KB
testcase_14 AC 40 ms
61,696 KB
testcase_15 AC 46 ms
70,784 KB
testcase_16 AC 44 ms
70,656 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(x, y):
    assert x != y
    if x + y < y + x:
        return 'Y'
    if x + y > y + x:
        return 'X'
    if x + y == y + x:
        return 'X' if len(x) > len(y) else 'Y'
        
for _ in range(int(input())):
    x = input()
    y = input()
    print(solve(x, y))
0