結果

問題 No.2030 Googol Strings
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-08-05 22:20:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 599 bytes
コンパイル時間 1,208 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 179,980 KB
最終ジャッジ日時 2024-09-15 19:26:01
合計ジャッジ時間 3,731 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 165 ms
76,664 KB
testcase_01 AC 94 ms
79,360 KB
testcase_02 AC 120 ms
115,756 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 WA -
testcase_05 AC 95 ms
77,824 KB
testcase_06 AC 185 ms
179,980 KB
testcase_07 AC 187 ms
171,772 KB
testcase_08 AC 189 ms
171,336 KB
testcase_09 AC 88 ms
77,528 KB
testcase_10 AC 88 ms
77,824 KB
testcase_11 AC 87 ms
78,720 KB
testcase_12 AC 151 ms
76,684 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 241 ms
164,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x = list(input())
    y = list(input())
    nx = len(x)
    ny = len(y)
    def aaa(x,y):
        n = len(y)
        while len(y) < len(x):
            for i in range(n):
                y.append(y[i])
    if len(x) > len(y):aaa(x,y)
    elif len(y) > len(x):aaa(y,x)
    n = min(len(x),len(y))
    cnt = 0
    for i in range(n):
        cnt += x[i] == y[i]
    if cnt != n:
        if x > y:
            print("X")
        elif x < y:
            print("Y")
    else:
        if nx > ny:
            print("X")
        else:
            print("Y")
#     print(x,y)
0