結果

問題 No.2030 Googol Strings
ユーザー H20H20
提出日時 2022-08-05 22:05:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 153 ms / 2,000 ms
コード長 461 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 77,108 KB
最終ジャッジ日時 2024-09-15 18:54:25
合計ジャッジ時間 2,664 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
77,108 KB
testcase_01 AC 47 ms
62,848 KB
testcase_02 AC 44 ms
60,160 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 149 ms
76,920 KB
testcase_05 AC 46 ms
61,056 KB
testcase_06 AC 52 ms
66,072 KB
testcase_07 AC 54 ms
67,968 KB
testcase_08 AC 53 ms
67,832 KB
testcase_09 AC 48 ms
64,000 KB
testcase_10 AC 48 ms
64,512 KB
testcase_11 AC 47 ms
64,000 KB
testcase_12 AC 148 ms
76,984 KB
testcase_13 AC 112 ms
76,636 KB
testcase_14 AC 48 ms
63,872 KB
testcase_15 AC 56 ms
74,240 KB
testcase_16 AC 56 ms
73,984 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#嘘解法?
T = int(input())
X = []
Y = []
for _ in range(T):
    x = input()*2
    y = input()*2
    lenx = len(x)
    leny = len(y)
    if lenx>leny:
        ceil = -(-lenx//leny)
        y = y*ceil
        y = y[:len(x)]
        if x>=y:
            print('X')
        else:
            print('Y')
    else:
        ceil = -(-leny//lenx)
        x = x*ceil
        x = x[:len(y)]
        if y>=x:
            print('Y')
        else:
            print('X')
0