結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-08-01 01:41:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 420 bytes
コンパイル時間 277 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,184 KB
最終ジャッジ日時 2024-07-21 08:04:23
合計ジャッジ時間 2,752 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 38 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 44 ms
57,344 KB
testcase_06 AC 45 ms
60,544 KB
testcase_07 AC 48 ms
64,128 KB
testcase_08 AC 47 ms
64,000 KB
testcase_09 AC 45 ms
58,752 KB
testcase_10 AC 48 ms
59,136 KB
testcase_11 AC 46 ms
58,880 KB
testcase_12 AC 122 ms
77,056 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 54 ms
63,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    x = input()
    y = input()
    if len(x) == len(y):
        if x < y:
            print('Y')
        else:
            print('X')
    if len(x) > len(y):
        if x[len(y)] >= y[0]:
            print('X')
        else:
            print('Y')
    if len(x) < len(y):
        if y[len(x)] >= x[0]:
            print('Y')
        else:
            print('X')

for _ in range(int(input())):
    solve()

0