結果

問題 No.1205 Eye Drops
ユーザー gorugo30gorugo30
提出日時 2021-02-23 15:35:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 86,476 KB
最終ジャッジ日時 2024-09-22 11:19:10
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,568 KB
testcase_01 AC 35 ms
52,200 KB
testcase_02 AC 43 ms
54,548 KB
testcase_03 AC 44 ms
54,456 KB
testcase_04 AC 40 ms
53,644 KB
testcase_05 AC 52 ms
64,032 KB
testcase_06 AC 42 ms
54,512 KB
testcase_07 AC 42 ms
55,420 KB
testcase_08 AC 51 ms
62,756 KB
testcase_09 AC 54 ms
63,524 KB
testcase_10 AC 53 ms
63,912 KB
testcase_11 AC 46 ms
60,000 KB
testcase_12 AC 52 ms
64,116 KB
testcase_13 AC 39 ms
53,552 KB
testcase_14 AC 53 ms
64,480 KB
testcase_15 AC 42 ms
54,660 KB
testcase_16 AC 39 ms
53,696 KB
testcase_17 AC 53 ms
63,012 KB
testcase_18 AC 38 ms
52,744 KB
testcase_19 AC 49 ms
61,592 KB
testcase_20 AC 42 ms
55,420 KB
testcase_21 AC 51 ms
62,172 KB
testcase_22 AC 46 ms
59,448 KB
testcase_23 AC 42 ms
55,356 KB
testcase_24 AC 47 ms
60,520 KB
testcase_25 AC 54 ms
63,588 KB
testcase_26 AC 47 ms
61,016 KB
testcase_27 AC 43 ms
55,288 KB
testcase_28 AC 41 ms
54,780 KB
testcase_29 AC 44 ms
60,188 KB
testcase_30 AC 49 ms
62,388 KB
testcase_31 AC 42 ms
54,700 KB
testcase_32 AC 141 ms
86,104 KB
testcase_33 AC 140 ms
86,116 KB
testcase_34 AC 140 ms
86,248 KB
testcase_35 AC 140 ms
86,108 KB
testcase_36 AC 144 ms
86,476 KB
testcase_37 AC 151 ms
86,300 KB
testcase_38 AC 38 ms
52,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
TP = [list(map(int, input().split())) for i in range(M)]
if TP[0][0] < TP[0][1]:
    print("No")
    exit()
for i in range(1, M):
    if abs(TP[i][0] - TP[i - 1][0]) < abs(TP[i][1] - TP[i - 1][1]):
        print("No")
        exit()
print("Yes")
0