結果

問題 No.1205 Eye Drops
ユーザー YU HiroseYU Hirose
提出日時 2024-06-18 20:40:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 221 bytes
コンパイル時間 397 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 76,112 KB
最終ジャッジ日時 2024-06-18 20:40:33
合計ジャッジ時間 3,994 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,628 KB
testcase_01 AC 40 ms
52,552 KB
testcase_02 AC 47 ms
55,564 KB
testcase_03 AC 39 ms
52,948 KB
testcase_04 AC 39 ms
52,256 KB
testcase_05 AC 41 ms
54,108 KB
testcase_06 AC 41 ms
53,560 KB
testcase_07 AC 38 ms
52,880 KB
testcase_08 AC 39 ms
52,620 KB
testcase_09 AC 40 ms
53,540 KB
testcase_10 AC 40 ms
52,836 KB
testcase_11 AC 46 ms
56,220 KB
testcase_12 AC 39 ms
53,616 KB
testcase_13 AC 41 ms
53,124 KB
testcase_14 AC 43 ms
55,048 KB
testcase_15 AC 42 ms
53,100 KB
testcase_16 AC 41 ms
53,572 KB
testcase_17 AC 38 ms
52,968 KB
testcase_18 AC 40 ms
53,076 KB
testcase_19 AC 39 ms
53,284 KB
testcase_20 AC 44 ms
54,680 KB
testcase_21 AC 38 ms
52,576 KB
testcase_22 AC 41 ms
54,400 KB
testcase_23 AC 46 ms
54,268 KB
testcase_24 AC 40 ms
52,732 KB
testcase_25 AC 38 ms
52,068 KB
testcase_26 AC 40 ms
54,024 KB
testcase_27 AC 39 ms
52,748 KB
testcase_28 AC 42 ms
54,292 KB
testcase_29 AC 39 ms
52,396 KB
testcase_30 AC 39 ms
53,100 KB
testcase_31 AC 39 ms
53,556 KB
testcase_32 AC 38 ms
52,912 KB
testcase_33 AC 39 ms
52,344 KB
testcase_34 AC 39 ms
52,308 KB
testcase_35 AC 38 ms
52,556 KB
testcase_36 AC 38 ms
53,496 KB
testcase_37 AC 112 ms
76,112 KB
testcase_38 AC 39 ms
53,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
curr = 0
tp = 0
for _ in range(m):
    t, p = map(int, input().split())
    if abs(t - tp) < abs(p - curr):
        print("No")
        break
    curr = p
    tp = t
else:
    print("Yes")
0