結果

問題 No.2030 Googol Strings
ユーザー ShirotsumeShirotsume
提出日時 2022-07-01 12:42:25
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 440 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 844,332 KB
最終ジャッジ日時 2024-05-09 21:09:42
合計ジャッジ時間 3,459 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
77,148 KB
testcase_01 AC 45 ms
59,008 KB
testcase_02 AC 46 ms
56,448 KB
testcase_03 AC 37 ms
51,820 KB
testcase_04 AC 286 ms
78,568 KB
testcase_05 AC 314 ms
240,804 KB
testcase_06 MLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#嘘解法
#x_i != y_iなるものがあるか判定して、なかったら適当な回数連結したもので比較 O(N)
def solve(x, y):
    assert x != y
    l = min(len(x), len(y))
    if x[:l] < y[:l]:
        return 'Y'
    elif x[:l] > y[:l]:
        return 'X'
    if x * 1234 < y * 1234:
        return 'Y'
    else:
        return 'X'
        
for _ in range(int(input())):
    x = input()
    y = input()
    print(solve(x, y))
0