結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
82,176 KB
testcase_01 AC 58 ms
72,448 KB
testcase_02 AC 74 ms
90,020 KB
testcase_03 AC 37 ms
51,968 KB
testcase_04 AC 87 ms
76,032 KB
testcase_05 AC 72 ms
76,800 KB
testcase_06 AC 122 ms
133,328 KB
testcase_07 AC 163 ms
166,332 KB
testcase_08 AC 161 ms
165,948 KB
testcase_09 TLE -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
import sys
input = sys.stdin.readline

for _ in range(int(input())):
    S = list(input().rstrip())
    T = list(input().rstrip())
    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