結果

問題 No.1107 三善アクセント
ユーザー 👑 KazunKazun
提出日時 2020-07-10 21:20:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 101 bytes
コンパイル時間 988 ms
コンパイル使用メモリ 86,636 KB
実行使用メモリ 71,240 KB
最終ジャッジ日時 2023-08-01 15:53:31
合計ジャッジ時間 4,000 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
71,072 KB
testcase_01 AC 69 ms
71,004 KB
testcase_02 AC 69 ms
71,032 KB
testcase_03 AC 69 ms
71,240 KB
testcase_04 AC 69 ms
70,860 KB
testcase_05 AC 69 ms
70,900 KB
testcase_06 AC 70 ms
70,932 KB
testcase_07 AC 70 ms
70,948 KB
testcase_08 AC 69 ms
71,032 KB
testcase_09 AC 70 ms
71,160 KB
testcase_10 AC 68 ms
71,036 KB
testcase_11 AC 68 ms
70,948 KB
testcase_12 AC 69 ms
71,108 KB
testcase_13 AC 70 ms
71,192 KB
testcase_14 AC 70 ms
71,132 KB
testcase_15 AC 69 ms
70,856 KB
testcase_16 AC 68 ms
70,992 KB
testcase_17 AC 70 ms
70,848 KB
testcase_18 AC 69 ms
70,792 KB
testcase_19 AC 68 ms
71,224 KB
testcase_20 AC 69 ms
71,088 KB
testcase_21 AC 69 ms
70,796 KB
testcase_22 AC 69 ms
70,900 KB
testcase_23 AC 70 ms
70,940 KB
testcase_24 AC 68 ms
71,040 KB
testcase_25 AC 70 ms
70,880 KB
testcase_26 AC 70 ms
71,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A=list(map(int,input().split()))

if A[0]<A[1] and A[2]>A[3]:
    print("YES")
else:
    print("NO")
0