結果

問題 No.1205 Eye Drops
ユーザー Theta
提出日時 2022-11-01 18:12:41
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 343 ms / 2,000 ms
コード長 405 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,464 KB
最終ジャッジ日時 2024-07-16 08:43:48
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    N, M = map(int, input().split())
    current_position = 0
    current_time = 0
    information = [list(map(int, input().split())) for _ in range(M)]
    for T, P in information:
        if (T - current_time) < abs(P-current_position):
            print("No")
            return
        current_position = P
        current_time = T
    print("Yes")


if __name__ == "__main__":
    main()
0