結果

問題 No.2030 Googol Strings
ユーザー asumo0729asumo0729
提出日時 2022-08-07 20:37:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 77,392 KB
最終ジャッジ日時 2024-09-17 13:00:01
合計ジャッジ時間 2,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
77,392 KB
testcase_01 AC 38 ms
61,244 KB
testcase_02 AC 35 ms
58,424 KB
testcase_03 AC 32 ms
52,516 KB
testcase_04 AC 121 ms
76,872 KB
testcase_05 AC 41 ms
59,568 KB
testcase_06 AC 44 ms
64,796 KB
testcase_07 AC 49 ms
67,948 KB
testcase_08 AC 46 ms
69,496 KB
testcase_09 AC 39 ms
61,568 KB
testcase_10 AC 40 ms
62,500 KB
testcase_11 AC 40 ms
62,176 KB
testcase_12 AC 113 ms
76,360 KB
testcase_13 AC 92 ms
76,908 KB
testcase_14 AC 38 ms
61,120 KB
testcase_15 AC 41 ms
68,368 KB
testcase_16 AC 43 ms
70,124 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(x, y, s, t):
    if x == y:
        if len(s) < len(t):
            return 'Y'
        else:
            return 'X'
    if x > y:
        return 'X'
    return 'Y'


T = int(input())
for _ in range(T):
    s = input()
    t = input()
    X = s + t; Y = t + s
    ans = f(X, Y, s, t)
    print(ans)
0