結果

問題 No.2030 Googol Strings
ユーザー lilictakalilictaka
提出日時 2022-08-10 13:24:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 203 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 240 ms
コンパイル使用メモリ 82,508 KB
実行使用メモリ 167,548 KB
最終ジャッジ日時 2024-09-20 23:05:47
合計ジャッジ時間 3,753 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 199 ms
77,440 KB
testcase_01 AC 60 ms
71,680 KB
testcase_02 AC 75 ms
90,176 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 178 ms
77,312 KB
testcase_05 AC 75 ms
75,904 KB
testcase_06 AC 132 ms
133,292 KB
testcase_07 AC 173 ms
167,548 KB
testcase_08 AC 172 ms
167,504 KB
testcase_09 AC 115 ms
76,416 KB
testcase_10 AC 117 ms
76,296 KB
testcase_11 AC 119 ms
76,276 KB
testcase_12 AC 203 ms
76,928 KB
testcase_13 AC 199 ms
77,952 KB
testcase_14 AC 87 ms
75,816 KB
testcase_15 AC 176 ms
93,432 KB
testcase_16 AC 148 ms
111,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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