結果

問題 No.1205 Eye Drops
ユーザー tktk_snsntktk_snsn
提出日時 2021-02-08 23:56:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 434 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 82,184 KB
実行使用メモリ 86,984 KB
最終ジャッジ日時 2024-07-06 04:23:57
合計ジャッジ時間 2,969 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,212 KB
testcase_01 AC 35 ms
52,248 KB
testcase_02 AC 36 ms
58,988 KB
testcase_03 AC 35 ms
58,768 KB
testcase_04 AC 35 ms
59,580 KB
testcase_05 AC 36 ms
59,876 KB
testcase_06 AC 34 ms
58,972 KB
testcase_07 AC 35 ms
58,708 KB
testcase_08 AC 36 ms
59,964 KB
testcase_09 AC 39 ms
59,420 KB
testcase_10 AC 40 ms
59,536 KB
testcase_11 AC 39 ms
58,756 KB
testcase_12 AC 40 ms
59,664 KB
testcase_13 AC 36 ms
52,692 KB
testcase_14 AC 36 ms
59,668 KB
testcase_15 AC 38 ms
58,500 KB
testcase_16 AC 33 ms
53,460 KB
testcase_17 AC 36 ms
59,628 KB
testcase_18 AC 33 ms
53,424 KB
testcase_19 AC 38 ms
60,592 KB
testcase_20 AC 36 ms
58,480 KB
testcase_21 AC 35 ms
58,952 KB
testcase_22 AC 36 ms
58,960 KB
testcase_23 AC 35 ms
58,824 KB
testcase_24 AC 35 ms
58,700 KB
testcase_25 AC 37 ms
60,224 KB
testcase_26 AC 36 ms
59,556 KB
testcase_27 AC 35 ms
59,000 KB
testcase_28 AC 35 ms
58,572 KB
testcase_29 AC 36 ms
59,976 KB
testcase_30 AC 36 ms
59,156 KB
testcase_31 AC 37 ms
58,980 KB
testcase_32 AC 92 ms
86,880 KB
testcase_33 AC 91 ms
86,708 KB
testcase_34 AC 90 ms
86,892 KB
testcase_35 AC 95 ms
86,816 KB
testcase_36 AC 90 ms
86,812 KB
testcase_37 AC 95 ms
86,984 KB
testcase_38 AC 32 ms
52,012 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.buffer.readline
sys.setrecursionlimit(10 ** 7)


def main():
    N, M = map(int, input().split())
    TP = tuple(tuple(map(int, input().split())) for _ in range(M))
    now = 0
    time = 0
    for t, p in TP:
        move = abs(p - now)
        T = t - time
        if move > T:
            return False
        now = p
        time = t
    return True


if main():
    print("Yes")
else:
    print("No")
0