結果

問題 No.2030 Googol Strings
ユーザー SidewaysOwlSidewaysOwl
提出日時 2022-08-05 22:28:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 433 ms / 2,000 ms
コード長 676 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 260,896 KB
最終ジャッジ日時 2024-09-15 19:38:08
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 197 ms
76,544 KB
testcase_01 AC 153 ms
83,584 KB
testcase_02 AC 216 ms
160,320 KB
testcase_03 AC 42 ms
51,840 KB
testcase_04 AC 196 ms
76,544 KB
testcase_05 AC 133 ms
81,024 KB
testcase_06 AC 404 ms
260,896 KB
testcase_07 AC 212 ms
171,236 KB
testcase_08 AC 212 ms
171,488 KB
testcase_09 AC 136 ms
82,816 KB
testcase_10 AC 146 ms
84,736 KB
testcase_11 AC 142 ms
86,400 KB
testcase_12 AC 190 ms
76,416 KB
testcase_13 AC 328 ms
80,128 KB
testcase_14 AC 177 ms
87,424 KB
testcase_15 AC 433 ms
177,932 KB
testcase_16 AC 345 ms
196,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x = list(input())
    y = list(input())
    nx = len(x)
    ny = len(y)
    def aaa(x,y):
        ny = len(y)
        nx = len(x)
        for i in range(nx):
            x.append(x[i])
        while len(y) < len(x):
            for i in range(ny):
                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