結果

問題 No.1205 Eye Drops
ユーザー aqua_tenhouaqua_tenhou
提出日時 2020-08-30 13:24:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 232 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 75,716 KB
最終ジャッジ日時 2024-05-03 00:53:37
合計ジャッジ時間 2,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,288 KB
testcase_01 AC 34 ms
52,572 KB
testcase_02 AC 39 ms
54,380 KB
testcase_03 AC 34 ms
52,348 KB
testcase_04 AC 33 ms
52,136 KB
testcase_05 AC 34 ms
52,944 KB
testcase_06 AC 33 ms
52,692 KB
testcase_07 AC 33 ms
51,820 KB
testcase_08 AC 32 ms
53,628 KB
testcase_09 AC 33 ms
53,496 KB
testcase_10 AC 37 ms
52,756 KB
testcase_11 AC 38 ms
54,500 KB
testcase_12 AC 32 ms
53,988 KB
testcase_13 AC 36 ms
52,808 KB
testcase_14 AC 40 ms
54,532 KB
testcase_15 AC 38 ms
54,104 KB
testcase_16 AC 34 ms
53,560 KB
testcase_17 AC 33 ms
52,616 KB
testcase_18 AC 33 ms
52,848 KB
testcase_19 AC 32 ms
52,560 KB
testcase_20 AC 36 ms
54,444 KB
testcase_21 AC 32 ms
52,500 KB
testcase_22 AC 37 ms
53,612 KB
testcase_23 AC 42 ms
54,804 KB
testcase_24 AC 34 ms
53,480 KB
testcase_25 AC 35 ms
53,452 KB
testcase_26 AC 35 ms
52,692 KB
testcase_27 AC 33 ms
52,356 KB
testcase_28 AC 35 ms
53,544 KB
testcase_29 AC 32 ms
53,056 KB
testcase_30 AC 32 ms
52,956 KB
testcase_31 AC 32 ms
52,428 KB
testcase_32 AC 32 ms
53,088 KB
testcase_33 AC 31 ms
53,160 KB
testcase_34 AC 33 ms
53,804 KB
testcase_35 AC 31 ms
53,196 KB
testcase_36 AC 31 ms
52,288 KB
testcase_37 AC 97 ms
75,716 KB
testcase_38 AC 33 ms
52,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
sw = 1
x = 0
t0 = 0
for i in range(m):
    t,p = map(int,input().split())
    if abs(p-x) <= t - t0:
        x = p
        t0 = t
    else:
        sw = 0
        break
        
print(["No","Yes"][sw])
0