結果

問題 No.2030 Googol Strings
ユーザー ThetaTheta
提出日時 2023-02-06 15:21:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 264 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,344 KB
最終ジャッジ日時 2024-07-04 19:25:10
合計ジャッジ時間 2,561 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
10,496 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 35 ms
12,080 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 WA -
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 34 ms
14,936 KB
testcase_07 AC 37 ms
18,344 KB
testcase_08 AC 37 ms
18,340 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 31 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 93 ms
10,496 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
11,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    for _ in range(int(input())):
        X = input()
        Y = input()
        X_double = X*2
        Y_double = Y*2
        if X_double > Y_double:
            print("X")
        else:
            print("Y")


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