結果

問題 No.2030 Googol Strings
ユーザー roarisroaris
提出日時 2022-08-05 22:20:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 467 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 76,800 KB
最終ジャッジ日時 2024-09-15 19:26:25
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
76,800 KB
testcase_01 AC 48 ms
59,392 KB
testcase_02 AC 46 ms
57,088 KB
testcase_03 AC 40 ms
51,328 KB
testcase_04 WA -
testcase_05 AC 47 ms
57,600 KB
testcase_06 AC 53 ms
62,976 KB
testcase_07 AC 57 ms
64,896 KB
testcase_08 AC 56 ms
64,896 KB
testcase_09 AC 51 ms
59,648 KB
testcase_10 AC 51 ms
59,520 KB
testcase_11 AC 51 ms
59,904 KB
testcase_12 AC 116 ms
76,032 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 57 ms
64,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

for _ in range(int(input())):
    x = input()[:-1]
    y = input()[:-1]
    
    if len(x)<len(y):
        s, a = divmod(len(y), len(x))
        x2, y2 = ''.join([x*s, x[:a]]), y
    else:
        s, a = divmod(len(x), len(y))
        x2, y2 = x, ''.join([y*s, y[:a]])
    
    if x2==y2:
        if x<y:
            print('Y')
        else:
            print('X')
    elif x2<y2:
        print('Y')
    else:
        print('X')
0