結果

問題 No.2030 Googol Strings
ユーザー ntudantuda
提出日時 2022-08-09 21:31:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 519 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 77,568 KB
最終ジャッジ日時 2024-09-20 01:56:13
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
76,944 KB
testcase_01 AC 42 ms
60,032 KB
testcase_02 AC 39 ms
57,600 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 135 ms
76,800 KB
testcase_05 AC 41 ms
59,776 KB
testcase_06 AC 46 ms
68,224 KB
testcase_07 AC 46 ms
64,128 KB
testcase_08 AC 46 ms
64,128 KB
testcase_09 AC 45 ms
62,336 KB
testcase_10 AC 46 ms
63,104 KB
testcase_11 AC 45 ms
62,464 KB
testcase_12 AC 122 ms
76,836 KB
testcase_13 WA -
testcase_14 AC 45 ms
61,824 KB
testcase_15 AC 50 ms
71,552 KB
testcase_16 AC 50 ms
70,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

for _ in range(N):
    x = input()
    y = input()
    if x < y:
        if len(x) >= len(y):
            print("Y")
        else:
            k = (len(y)//len(x)+1)*2
            if (x*k)[:len(y)*2] <= y*2:
                print("Y")
            else:
                print("X")
    else:
        if len(x) <= len(y):
            print("X")
        else:
            k = len(x)//len(y)+1
            if (y*k)[:len(x)*2] <= x*2:
                print("X")
            else:
                print("Y")
0