結果

問題 No.2030 Googol Strings
ユーザー tamatotamato
提出日時 2022-08-05 21:42:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 334 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-09-15 18:02:35
合計ジャッジ時間 2,261 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
75,520 KB
testcase_01 AC 48 ms
59,776 KB
testcase_02 AC 45 ms
57,472 KB
testcase_03 AC 38 ms
51,712 KB
testcase_04 AC 83 ms
75,904 KB
testcase_05 AC 47 ms
58,112 KB
testcase_06 AC 52 ms
63,488 KB
testcase_07 AC 57 ms
67,456 KB
testcase_08 AC 57 ms
67,584 KB
testcase_09 AC 51 ms
60,160 KB
testcase_10 AC 50 ms
60,928 KB
testcase_11 AC 50 ms
60,544 KB
testcase_12 AC 82 ms
76,032 KB
testcase_13 AC 77 ms
75,392 KB
testcase_14 AC 48 ms
60,160 KB
testcase_15 AC 57 ms
66,176 KB
testcase_16 AC 57 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        S = input().rstrip('\n')
        T = input().rstrip('\n')

        ST = "".join([S, T])
        TS = "".join([T, S])
        if ST > TS:
            print("X")
        elif ST < TS:
            print("Y")
        else:
            if len(S) > len(T):
                print("X")
            else:
                print("Y")


if __name__ == '__main__':
    main()
0