結果

問題 No.2030 Googol Strings
ユーザー lilictakalilictaka
提出日時 2022-08-10 13:17:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 558 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,888 KB
実行使用メモリ 167,620 KB
最終ジャッジ日時 2024-09-20 22:24:33
合計ジャッジ時間 3,398 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
77,012 KB
testcase_01 AC 53 ms
71,560 KB
testcase_02 AC 72 ms
89,712 KB
testcase_03 AC 37 ms
53,352 KB
testcase_04 WA -
testcase_05 AC 69 ms
75,768 KB
testcase_06 AC 124 ms
133,196 KB
testcase_07 AC 173 ms
167,620 KB
testcase_08 AC 168 ms
167,508 KB
testcase_09 AC 80 ms
75,856 KB
testcase_10 AC 79 ms
76,040 KB
testcase_11 AC 82 ms
76,616 KB
testcase_12 AC 155 ms
77,016 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 130 ms
106,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
def cmp(A,B):#len(A) > len(B)
    for i in range(len(A)):
        if A[i] > B[i % len(B)]:
            return 1
        elif A[i] < B[i%len(B)]:
            return -1
    return 1

for _ in range(T):
    X = list(input())
    Y = list(input())
    if len(X) == len(Y):
        if X > Y:
            print('X')
        else:
            print('Y')
    elif len(X) > len(Y):
        if cmp(X,Y) == 1:
            print('X')
        else:print('Y')
    else:
        if cmp(Y,X) == 1:
            print('Y')
        else:
            print('X')
0