結果

問題 No.1205 Eye Drops
ユーザー ああいいああいい
提出日時 2022-01-27 17:54:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 372 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 81,132 KB
最終ジャッジ日時 2024-06-07 14:32:04
合計ジャッジ時間 4,287 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,876 KB
testcase_01 AC 36 ms
52,560 KB
testcase_02 AC 43 ms
54,936 KB
testcase_03 AC 42 ms
54,372 KB
testcase_04 AC 44 ms
54,016 KB
testcase_05 AC 50 ms
61,480 KB
testcase_06 AC 42 ms
54,316 KB
testcase_07 AC 42 ms
54,736 KB
testcase_08 AC 50 ms
60,748 KB
testcase_09 AC 49 ms
61,952 KB
testcase_10 AC 49 ms
62,568 KB
testcase_11 AC 43 ms
55,280 KB
testcase_12 AC 48 ms
61,060 KB
testcase_13 AC 39 ms
52,552 KB
testcase_14 AC 50 ms
61,352 KB
testcase_15 AC 42 ms
54,656 KB
testcase_16 AC 37 ms
54,204 KB
testcase_17 AC 48 ms
61,576 KB
testcase_18 AC 37 ms
52,488 KB
testcase_19 AC 43 ms
56,172 KB
testcase_20 AC 43 ms
54,680 KB
testcase_21 AC 47 ms
61,228 KB
testcase_22 AC 43 ms
55,440 KB
testcase_23 AC 42 ms
54,656 KB
testcase_24 AC 44 ms
56,448 KB
testcase_25 AC 51 ms
62,424 KB
testcase_26 AC 43 ms
56,072 KB
testcase_27 AC 41 ms
54,788 KB
testcase_28 AC 40 ms
54,432 KB
testcase_29 AC 43 ms
55,284 KB
testcase_30 AC 46 ms
55,920 KB
testcase_31 AC 42 ms
54,868 KB
testcase_32 AC 115 ms
81,104 KB
testcase_33 AC 118 ms
80,960 KB
testcase_34 AC 117 ms
80,880 KB
testcase_35 AC 117 ms
81,132 KB
testcase_36 AC 119 ms
81,104 KB
testcase_37 AC 122 ms
81,132 KB
testcase_38 AC 36 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M = map(int,input().split())
info = []
for _ in range(M):
    t,p = map(int,input().split())
    info.append((t,p))

time = 0
pos = 0
import sys
for t,p in info:
    if time > t:
        print('No')
        exit()
    delta = t - time
    deltapos = abs(p-pos)
    if deltapos > delta:
        print('No')
        exit()
    time = t
    pos = p
print('Yes')
0