結果

問題 No.2030 Googol Strings
ユーザー rlangevinrlangevin
提出日時 2022-08-29 00:14:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 330 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 253,280 KB
最終ジャッジ日時 2024-10-15 20:10:06
合計ジャッジ時間 5,235 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
76,672 KB
testcase_01 AC 78 ms
73,472 KB
testcase_02 AC 118 ms
109,312 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 170 ms
76,800 KB
testcase_05 AC 83 ms
71,680 KB
testcase_06 AC 254 ms
204,728 KB
testcase_07 AC 330 ms
253,156 KB
testcase_08 AC 327 ms
253,280 KB
testcase_09 AC 140 ms
77,568 KB
testcase_10 AC 143 ms
78,976 KB
testcase_11 AC 154 ms
77,824 KB
testcase_12 AC 222 ms
76,672 KB
testcase_13 AC 217 ms
76,928 KB
testcase_14 AC 104 ms
75,648 KB
testcase_15 AC 212 ms
112,324 KB
testcase_16 AC 258 ms
172,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
ans = ["X", "Y"]
for _ in range(T):
    X = list(input())
    Y = list(input())
    if X + Y < Y + X:
        print("Y")
    elif X + Y > Y + X:
        print("X")
    else:
        if len(X) < len(Y):
            print("Y")
        else:
            print("X")    
0