結果

問題 No.1205 Eye Drops
ユーザー shotoyooshotoyoo
提出日時 2020-08-30 13:03:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 117 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 86,204 KB
最終ジャッジ日時 2024-05-03 00:43:03
合計ジャッジ時間 3,211 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,664 KB
testcase_01 AC 32 ms
52,800 KB
testcase_02 AC 34 ms
53,160 KB
testcase_03 AC 34 ms
54,732 KB
testcase_04 AC 35 ms
53,932 KB
testcase_05 AC 42 ms
60,476 KB
testcase_06 AC 36 ms
53,072 KB
testcase_07 AC 38 ms
53,660 KB
testcase_08 AC 43 ms
59,844 KB
testcase_09 AC 45 ms
60,296 KB
testcase_10 AC 45 ms
61,600 KB
testcase_11 AC 41 ms
59,300 KB
testcase_12 AC 44 ms
60,368 KB
testcase_13 AC 37 ms
53,784 KB
testcase_14 AC 44 ms
61,544 KB
testcase_15 AC 38 ms
54,232 KB
testcase_16 AC 37 ms
52,340 KB
testcase_17 AC 44 ms
60,452 KB
testcase_18 AC 36 ms
54,004 KB
testcase_19 AC 42 ms
61,540 KB
testcase_20 AC 38 ms
54,936 KB
testcase_21 AC 43 ms
61,080 KB
testcase_22 AC 37 ms
58,712 KB
testcase_23 AC 34 ms
52,752 KB
testcase_24 AC 38 ms
59,152 KB
testcase_25 AC 41 ms
60,420 KB
testcase_26 AC 41 ms
59,076 KB
testcase_27 AC 38 ms
54,476 KB
testcase_28 AC 39 ms
52,840 KB
testcase_29 AC 41 ms
58,200 KB
testcase_30 AC 43 ms
60,764 KB
testcase_31 AC 38 ms
53,424 KB
testcase_32 AC 112 ms
85,788 KB
testcase_33 AC 117 ms
85,620 KB
testcase_34 AC 112 ms
85,768 KB
testcase_35 AC 114 ms
86,072 KB
testcase_36 AC 111 ms
86,204 KB
testcase_37 AC 111 ms
85,796 KB
testcase_38 AC 34 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()
sys.setrecursionlimit(max(1000, 10**9))
write = lambda x: sys.stdout.write(x+"\n")


# inputna
n,m = list(map(int, input().split()))
tp = [list(map(int, input().split())) for _ in range(m)]
tp.sort()
c = 0
ct = 0
for t,p in tp:
    if abs(c-p)>t-ct:
        ans = False
        break
    c = p
    ct = t
else:
    ans = True
if ans:
    print("Yes")
else:
    print("No")
0