結果

問題 No.2030 Googol Strings
ユーザー ニックネームニックネーム
提出日時 2022-08-05 22:06:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 247 bytes
コンパイル時間 532 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,376 KB
最終ジャッジ日時 2024-09-15 18:59:11
合計ジャッジ時間 9,196 ms
ジャッジサーバーID
(参考情報)
judge6 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
10,752 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 31 ms
11,264 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 196 ms
10,752 KB
testcase_06 AC 363 ms
12,888 KB
testcase_07 AC 699 ms
14,376 KB
testcase_08 AC 691 ms
14,252 KB
testcase_09 AC 477 ms
10,624 KB
testcase_10 AC 479 ms
10,624 KB
testcase_11 AC 479 ms
10,624 KB
testcase_12 AC 484 ms
10,752 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 695 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    x = input(); y = input()
    m = len(x); n = len(y)
    for i in range(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