結果

問題 No.2030 Googol Strings
ユーザー ニックネームニックネーム
提出日時 2022-08-05 22:07:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,311 ms / 2,000 ms
コード長 249 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 14,380 KB
最終ジャッジ日時 2024-09-15 19:02:21
合計ジャッジ時間 10,512 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
10,496 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
11,136 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 252 ms
10,624 KB
testcase_05 AC 202 ms
10,624 KB
testcase_06 AC 365 ms
13,020 KB
testcase_07 AC 686 ms
14,256 KB
testcase_08 AC 704 ms
14,380 KB
testcase_09 AC 904 ms
10,496 KB
testcase_10 AC 934 ms
10,496 KB
testcase_11 AC 935 ms
10,624 KB
testcase_12 AC 857 ms
10,368 KB
testcase_13 AC 972 ms
10,624 KB
testcase_14 AC 371 ms
10,496 KB
testcase_15 AC 1,311 ms
10,752 KB
testcase_16 AC 692 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x = input(); y = input()
    m = len(x); n = len(y)
    for i in range(2*max(m, n)):
        if x[i%m] > y[i%n]: print("X"); break
        if x[i%m] < y[i%n]: print("Y"); break
    else: print("X" if m > n else "Y")
0