結果

問題 No.2030 Googol Strings
ユーザー H20H20
提出日時 2022-08-05 22:01:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 760 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,152 KB
最終ジャッジ日時 2024-09-15 18:35:32
合計ジャッジ時間 2,239 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
78,080 KB
testcase_01 AC 44 ms
59,904 KB
testcase_02 AC 41 ms
56,960 KB
testcase_03 AC 37 ms
51,712 KB
testcase_04 WA -
testcase_05 AC 45 ms
58,496 KB
testcase_06 AC 47 ms
61,824 KB
testcase_07 AC 49 ms
63,872 KB
testcase_08 AC 49 ms
64,000 KB
testcase_09 AC 45 ms
60,928 KB
testcase_10 AC 45 ms
60,416 KB
testcase_11 AC 45 ms
60,032 KB
testcase_12 AC 118 ms
78,152 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 47 ms
66,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

T = int(input())
X = []
Y = []
for _ in range(T):
    X.append(input())
    Y.append(input())
for i in range(T):
    x = X[i]
    y = Y[i]
    lenx = len(x)
    leny = len(y)
    if lenx>leny:
        v = -(-lenx//leny)
        y = y*v
        y = y[:len(x)]
        if x>=y:
            print('X')
        else:
            print('Y')
    else:
        v = -(-leny//lenx)
        x = x*v
        x = x[:len(y)]
        if y>=x:
            print('Y')
        else:
            print('X')
0