結果

問題 No.2030 Googol Strings
ユーザー 👑 rin204rin204
提出日時 2022-08-20 15:31:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 181 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 88,192 KB
最終ジャッジ日時 2024-10-09 08:11:48
合計ジャッジ時間 3,309 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
77,184 KB
testcase_01 AC 58 ms
67,584 KB
testcase_02 AC 52 ms
64,384 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 177 ms
77,056 KB
testcase_05 AC 55 ms
64,640 KB
testcase_06 AC 57 ms
70,656 KB
testcase_07 AC 60 ms
73,728 KB
testcase_08 AC 61 ms
73,728 KB
testcase_09 AC 60 ms
69,248 KB
testcase_10 AC 64 ms
70,656 KB
testcase_11 AC 60 ms
68,480 KB
testcase_12 AC 164 ms
77,312 KB
testcase_13 AC 127 ms
76,288 KB
testcase_14 AC 60 ms
68,608 KB
testcase_15 AC 77 ms
88,192 KB
testcase_16 AC 67 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    S = input()
    T = input()
    ls = len(S)
    lt = len(T)
    ll = max(ls, lt) * 5
    S *= ((ll + ls - 1) // ls)
    T *= ((ll + lt - 1) // lt)
    S = S[:ll]
    T = T[:ll]
    if S > T:
        print("X")
    elif S < T:
        print("Y")
    elif ls < lt:
        print("Y")
    else:
        print("X")

for _ in range(int(input())):
    solve()
0