結果

問題 No.1205 Eye Drops
ユーザー chineristACchineristAC
提出日時 2020-08-30 13:05:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 296 bytes
コンパイル時間 262 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-11-23 20:35:20
合計ジャッジ時間 3,460 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input=sys.stdin.readline

N,M=map(int,input().split())
eye=[tuple(map(int,input().split())) for i in range(M)]
eye.append((0,0))
eye.sort()
check=True
for i in range(1,M+1):
    pt,pp=eye[i-1]
    t,p=eye[i]
    if abs(pp-p)>t-pt:
        check=False

print("Yes" if check else "No")
0