結果

問題 No.2030 Googol Strings
ユーザー gr1msl3ygr1msl3y
提出日時 2022-08-16 23:57:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 552 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 77,948 KB
最終ジャッジ日時 2024-10-03 18:31:49
合計ジャッジ時間 3,285 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
77,692 KB
testcase_01 AC 50 ms
60,544 KB
testcase_02 AC 43 ms
58,832 KB
testcase_03 AC 38 ms
53,144 KB
testcase_04 AC 122 ms
77,480 KB
testcase_05 AC 57 ms
64,748 KB
testcase_06 AC 66 ms
68,200 KB
testcase_07 AC 83 ms
70,656 KB
testcase_08 AC 83 ms
71,252 KB
testcase_09 AC 45 ms
61,684 KB
testcase_10 AC 45 ms
61,736 KB
testcase_11 AC 45 ms
62,324 KB
testcase_12 AC 113 ms
77,948 KB
testcase_13 AC 139 ms
76,792 KB
testcase_14 AC 64 ms
67,348 KB
testcase_15 AC 90 ms
71,372 KB
testcase_16 AC 81 ms
72,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd


def solve(x, y):
    a = len(x)
    b = len(y)
    g = gcd(a, b)
    s = x[:g]
    if x == s*(a//g) and y == s*(b//g):
        return 'X' if a > b else 'Y'
    i = 0
    while True:
        p = ord(x[i % a])
        q = ord(y[i % b])
        if p > q:
            return 'X'
        elif p < q:
            return 'Y'
        else:
            i += 1


def main():
    T = int(input())
    ans = []
    for _ in range(T):
        x = input()
        y = input()
        ans.append(solve(x, y))
    print(*ans, sep='\n')


main()
0