結果
| 問題 |
No.1205 Eye Drops
|
| コンテスト | |
| ユーザー |
Somtk_42
|
| 提出日時 | 2020-08-30 13:12:26 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 234 bytes |
| コンパイル時間 | 170 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 31,104 KB |
| 最終ジャッジ日時 | 2024-11-23 20:41:38 |
| 合計ジャッジ時間 | 4,776 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 |
| other | AC * 36 WA * 1 |
ソースコード
n, m = map(int, input().split())
tp = [[0, 0]] + [list(map(int, input().split())) for i in range(m)]
ind = 0
for i in range(1, m+1):
if tp[i][0] - tp[i-1][0] < tp[i][1] - tp[i-1][1]:
print("No")
exit()
print("Yes")
Somtk_42