結果

問題 No.2030 Googol Strings
ユーザー stngstng
提出日時 2022-08-07 09:55:48
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 430 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,240 KB
実行使用メモリ 80,632 KB
最終ジャッジ日時 2024-09-17 04:32:30
合計ジャッジ時間 3,217 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 33 ms
52,892 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 70 ms
80,340 KB
testcase_08 WA -
testcase_09 AC 84 ms
75,224 KB
testcase_10 AC 82 ms
75,084 KB
testcase_11 AC 80 ms
75,340 KB
testcase_12 AC 129 ms
76,648 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

t = int(input())
for i in range(t):
    x = input()
    y = input()
    lx = len(x)
    ly = len(y)
    f = False
    for j in range(max(lx,ly)):
        if x[j%lx] < y[j%ly]:
            f = True
            print("Y")
            break
        elif x[j%lx] < y[j%ly]:
            f = True
            print("X")
            break
    if f == False:
        if lx < ly:
            print("Y")
        else:
            print("X")
0