結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-07-10 01:59:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 720 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 85,748 KB
最終ジャッジ日時 2024-06-10 11:05:51
合計ジャッジ時間 2,522 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
76,632 KB
testcase_01 AC 45 ms
60,544 KB
testcase_02 AC 42 ms
58,624 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 WA -
testcase_05 AC 57 ms
74,480 KB
testcase_06 AC 69 ms
80,152 KB
testcase_07 AC 82 ms
85,748 KB
testcase_08 AC 79 ms
85,320 KB
testcase_09 AC 70 ms
74,504 KB
testcase_10 AC 68 ms
74,828 KB
testcase_11 AC 71 ms
74,816 KB
testcase_12 AC 103 ms
76,268 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 78 ms
77,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
INF = 2 ** 63 - 1
mod = 998244353

def solve():
    s = input()
    t = input()
    n = len(s)
    m = len(t)
    p = 1
    while len(s) >= p * len(t):
        p += 1
    t = t * p
    p = 1
    while len(t) >= p * len(s):
        p += 1
    s = s * (p + 1)
    for i in range(min(len(s), len(t))):
        if s[i] > t[i]:
            ans = 'X'
            break
        elif s[i] < t[i]:
            ans = 'Y'
            break
    else:
        if n < m:
            ans = 'Y'
        else:
            ans = 'X'

    print(ans)

for _ in range(ii()):
    solve()
        
0