結果

問題 No.138 化石のバージョン
ユーザー 310icecrystal310icecrystal
提出日時 2024-07-15 03:31:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 68 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 53,784 KB
最終ジャッジ日時 2024-07-15 03:31:27
合計ジャッジ時間 3,596 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,892 KB
testcase_01 AC 40 ms
51,684 KB
testcase_02 AC 39 ms
51,908 KB
testcase_03 AC 39 ms
52,752 KB
testcase_04 AC 41 ms
52,440 KB
testcase_05 AC 41 ms
52,972 KB
testcase_06 AC 46 ms
52,836 KB
testcase_07 AC 43 ms
52,768 KB
testcase_08 AC 40 ms
52,528 KB
testcase_09 AC 42 ms
52,884 KB
testcase_10 AC 40 ms
52,216 KB
testcase_11 AC 40 ms
53,784 KB
testcase_12 WA -
testcase_13 AC 43 ms
52,592 KB
testcase_14 WA -
testcase_15 AC 40 ms
51,764 KB
testcase_16 AC 40 ms
51,820 KB
testcase_17 AC 39 ms
52,756 KB
testcase_18 AC 39 ms
52,696 KB
testcase_19 AC 39 ms
52,028 KB
testcase_20 AC 42 ms
52,676 KB
testcase_21 AC 41 ms
53,552 KB
testcase_22 AC 40 ms
51,796 KB
testcase_23 AC 40 ms
52,952 KB
testcase_24 AC 40 ms
52,384 KB
testcase_25 AC 40 ms
52,048 KB
testcase_26 AC 43 ms
52,000 KB
testcase_27 AC 41 ms
52,212 KB
testcase_28 AC 46 ms
52,216 KB
testcase_29 WA -
testcase_30 AC 42 ms
52,572 KB
testcase_31 WA -
testcase_32 AC 42 ms
51,824 KB
testcase_33 WA -
testcase_34 AC 43 ms
53,292 KB
testcase_35 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

X = input()
Y = input()

if Y <= X:
	print("YES")
else:
	print("NO")
0