結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-07-15 16:59:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 985 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 80,100 KB
最終ジャッジ日時 2024-06-27 11:51:56
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
76,308 KB
testcase_01 AC 46 ms
59,764 KB
testcase_02 AC 40 ms
56,716 KB
testcase_03 AC 37 ms
53,292 KB
testcase_04 WA -
testcase_05 AC 56 ms
74,712 KB
testcase_06 AC 63 ms
78,216 KB
testcase_07 AC 75 ms
80,100 KB
testcase_08 AC 77 ms
79,980 KB
testcase_09 AC 67 ms
74,452 KB
testcase_10 AC 68 ms
74,380 KB
testcase_11 AC 67 ms
74,840 KB
testcase_12 AC 97 ms
76,588 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 73 ms
76,168 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():
    x = input()
    y = input()

    for i in range(min(len(x), len(y))):
        if x[i] > y[i]:
            print('X')
            return
        elif x[i] < y[i]:
            print('Y')
            return
    if len(x) > len(y):
        z = x[len(y):]
        for i in range(min(len(z), len(y))):
            if y[i] > z[i]:
                print('Y')
                return
            elif y[i] < z[i]:
                print('X')
                return
        print('X')
    elif len(x) <= len(y):
        z = y[len(x):]
        for i in range(min(len(z), len(x))):
            if x[i] > z[i]:
                print('X')
                return
            elif x[i] < z[i]:
                print('Y')
                return
        print('Y')
        
for _ in range(ii()):
    solve()
0