結果

問題 No.2030 Googol Strings
ユーザー lloyzlloyz
提出日時 2023-08-26 18:32:44
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 444 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 166,644 KB
最終ジャッジ日時 2024-06-07 14:04:45
合計ジャッジ時間 5,550 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 146 ms
83,072 KB
testcase_01 AC 57 ms
71,424 KB
testcase_02 AC 69 ms
89,764 KB
testcase_03 AC 35 ms
52,480 KB
testcase_04 AC 127 ms
76,892 KB
testcase_05 AC 74 ms
76,800 KB
testcase_06 AC 119 ms
133,476 KB
testcase_07 AC 156 ms
166,644 KB
testcase_08 AC 160 ms
166,348 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd

for _ in range(int(input())):
    S = list(input())
    T = list(input())
    n, m = len(S), len(T)
    lcm = n * m // gcd(n, m)
    ans = -1
    for i in range(lcm):
        if S[i % n] > T[i % m]:
            ans = 'X'
            break
        elif S[i % n] < T[i % m]:
            ans = 'Y'
            break
    if ans == -1:
        if n > m:
            ans = 'X'
        else:
            ans = 'Y'
    print(ans)
0