結果

問題 No.1107 三善アクセント
ユーザー otsunekootsuneko
提出日時 2021-05-14 10:23:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 86 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,480 KB
実行使用メモリ 53,364 KB
最終ジャッジ日時 2024-04-09 02:26:22
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,516 KB
testcase_01 AC 34 ms
52,076 KB
testcase_02 AC 35 ms
52,504 KB
testcase_03 AC 35 ms
52,260 KB
testcase_04 AC 35 ms
51,552 KB
testcase_05 AC 35 ms
52,632 KB
testcase_06 AC 37 ms
52,480 KB
testcase_07 AC 36 ms
52,176 KB
testcase_08 AC 35 ms
52,060 KB
testcase_09 AC 34 ms
52,524 KB
testcase_10 AC 35 ms
51,900 KB
testcase_11 AC 35 ms
52,332 KB
testcase_12 AC 35 ms
52,068 KB
testcase_13 AC 35 ms
52,080 KB
testcase_14 AC 35 ms
52,360 KB
testcase_15 AC 34 ms
53,364 KB
testcase_16 AC 35 ms
52,596 KB
testcase_17 AC 35 ms
52,892 KB
testcase_18 AC 35 ms
52,956 KB
testcase_19 AC 36 ms
52,176 KB
testcase_20 AC 35 ms
51,808 KB
testcase_21 AC 35 ms
52,492 KB
testcase_22 AC 35 ms
52,112 KB
testcase_23 AC 35 ms
52,572 KB
testcase_24 AC 36 ms
52,188 KB
testcase_25 AC 37 ms
53,008 KB
testcase_26 AC 35 ms
51,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = list(map(int,input().split()))
print(["NO","YES"][ A[0] < A[1] and A[2] > A[3] ])
0