結果

問題 No.2030 Googol Strings
ユーザー ntudantuda
提出日時 2022-08-09 21:49:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,712 KB
実行使用メモリ 77,156 KB
最終ジャッジ日時 2024-09-20 02:21:50
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
76,848 KB
testcase_01 AC 43 ms
60,284 KB
testcase_02 AC 44 ms
59,724 KB
testcase_03 AC 36 ms
53,048 KB
testcase_04 AC 142 ms
76,852 KB
testcase_05 AC 43 ms
61,432 KB
testcase_06 AC 50 ms
68,064 KB
testcase_07 AC 48 ms
65,964 KB
testcase_08 AC 47 ms
64,976 KB
testcase_09 AC 44 ms
64,032 KB
testcase_10 AC 46 ms
64,644 KB
testcase_11 AC 45 ms
64,480 KB
testcase_12 AC 131 ms
77,156 KB
testcase_13 AC 115 ms
76,760 KB
testcase_14 AC 46 ms
63,680 KB
testcase_15 AC 54 ms
74,832 KB
testcase_16 AC 51 ms
73,508 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)*2
            if (y*k)[:len(x)*2] <= x*2:
                print("X")
            else:
                print("Y")
0