結果

問題 No.2022 Antilogarithm
ユーザー H20H20
提出日時 2022-07-29 22:13:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 78 bytes
コンパイル時間 489 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 53,720 KB
最終ジャッジ日時 2024-07-19 15:03:53
合計ジャッジ時間 4,136 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,416 KB
testcase_01 AC 36 ms
51,980 KB
testcase_02 AC 38 ms
52,444 KB
testcase_03 AC 41 ms
52,676 KB
testcase_04 WA -
testcase_05 AC 41 ms
52,616 KB
testcase_06 AC 36 ms
52,792 KB
testcase_07 WA -
testcase_08 AC 36 ms
52,560 KB
testcase_09 AC 35 ms
52,076 KB
testcase_10 AC 36 ms
52,484 KB
testcase_11 AC 36 ms
52,404 KB
testcase_12 AC 36 ms
53,092 KB
testcase_13 AC 36 ms
52,784 KB
testcase_14 AC 36 ms
53,096 KB
testcase_15 AC 36 ms
52,704 KB
testcase_16 AC 35 ms
52,672 KB
testcase_17 AC 35 ms
52,436 KB
testcase_18 AC 35 ms
52,852 KB
testcase_19 AC 36 ms
52,516 KB
testcase_20 AC 36 ms
53,500 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 36 ms
52,948 KB
testcase_24 AC 35 ms
51,804 KB
testcase_25 AC 36 ms
52,280 KB
testcase_26 AC 37 ms
52,556 KB
testcase_27 AC 36 ms
52,364 KB
testcase_28 AC 36 ms
52,312 KB
testcase_29 AC 37 ms
52,512 KB
testcase_30 AC 36 ms
51,692 KB
testcase_31 AC 35 ms
52,332 KB
testcase_32 AC 35 ms
52,276 KB
testcase_33 AC 36 ms
52,484 KB
testcase_34 AC 37 ms
52,924 KB
testcase_35 AC 36 ms
52,820 KB
testcase_36 AC 37 ms
52,072 KB
testcase_37 AC 37 ms
52,160 KB
testcase_38 AC 35 ms
51,772 KB
testcase_39 AC 36 ms
52,456 KB
testcase_40 AC 36 ms
52,908 KB
testcase_41 AC 36 ms
52,900 KB
testcase_42 AC 36 ms
53,720 KB
testcase_43 AC 38 ms
52,372 KB
testcase_44 AC 36 ms
52,628 KB
testcase_45 AC 37 ms
53,184 KB
testcase_46 AC 36 ms
52,916 KB
testcase_47 AC 37 ms
52,200 KB
testcase_48 AC 37 ms
51,780 KB
testcase_49 AC 36 ms
52,444 KB
testcase_50 AC 36 ms
52,952 KB
testcase_51 AC 39 ms
52,192 KB
testcase_52 AC 38 ms
52,888 KB
testcase_53 AC 36 ms
52,328 KB
testcase_54 AC 36 ms
52,288 KB
testcase_55 AC 36 ms
52,192 KB
testcase_56 AC 36 ms
52,344 KB
testcase_57 WA -
testcase_58 WA -
testcase_59 AC 36 ms
52,548 KB
testcase_60 WA -
testcase_61 AC 36 ms
52,076 KB
testcase_62 WA -
testcase_63 AC 36 ms
52,552 KB
testcase_64 AC 36 ms
52,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A,B = map(int, input().split())
if A<B:
    print('Yes')
else:
    print('No')
0