結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-07-01 12:25:28
言語 PyPy3
(7.3.15)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 314 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 243,072 KB
最終ジャッジ日時 2024-05-09 21:16:24
合計ジャッジ時間 3,026 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
77,328 KB
testcase_01 AC 51 ms
59,136 KB
testcase_02 AC 46 ms
56,576 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 158 ms
76,928 KB
testcase_05 AC 98 ms
131,200 KB
testcase_06 AC 97 ms
208,512 KB
testcase_07 AC 50 ms
63,872 KB
testcase_08 AC 51 ms
64,512 KB
testcase_09 AC 134 ms
158,592 KB
testcase_10 AC 138 ms
162,688 KB
testcase_11 AC 136 ms
160,000 KB
testcase_12 AC 171 ms
76,544 KB
testcase_13 WA -
testcase_14 AC 120 ms
156,416 KB
testcase_15 WA -
testcase_16 AC 127 ms
243,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(x, y):
    assert x != y
    l = min(len(x), len(y))
    if x[:l] < y[:l]:
        return 'Y'
    elif x[:l] > y[:l]:
        return 'X'
    if x * 100 < y * 100:
        return 'Y'
    else:
        return 'X'
        
for _ in range(int(input())):
    x = input()
    y = input()
    print(solve(x, y))
0