結果

問題 No.2030 Googol Strings
ユーザー stngstng
提出日時 2022-08-07 10:05:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 180 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 82,060 KB
実行使用メモリ 80,432 KB
最終ジャッジ日時 2024-09-17 04:40:44
合計ジャッジ時間 3,558 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 149 ms
77,336 KB
testcase_01 AC 46 ms
60,192 KB
testcase_02 AC 39 ms
57,928 KB
testcase_03 AC 38 ms
52,236 KB
testcase_04 AC 125 ms
76,596 KB
testcase_05 AC 67 ms
75,500 KB
testcase_06 AC 63 ms
78,796 KB
testcase_07 AC 74 ms
80,432 KB
testcase_08 AC 75 ms
80,320 KB
testcase_09 AC 121 ms
75,140 KB
testcase_10 AC 121 ms
75,444 KB
testcase_11 AC 122 ms
75,016 KB
testcase_12 AC 177 ms
76,400 KB
testcase_13 AC 180 ms
76,368 KB
testcase_14 AC 80 ms
75,248 KB
testcase_15 AC 161 ms
76,304 KB
testcase_16 AC 102 ms
76,648 KB
権限があれば一括ダウンロードができます

ソースコード

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(2*lx,2*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