結果

問題 No.1205 Eye Drops
ユーザー 👑 NachiaNachia
提出日時 2020-10-12 17:16:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 777 ms
コンパイル使用メモリ 63,232 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-20 18:05:48
合計ジャッジ時間 3,149 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 37
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
using namespace std;
using LL = long long;
using ULL = unsigned long long;
#define rep(i,n) for(int i=0; i<(n); i++)

int main(){
	int N, M; cin >> N >> M;
	LL T = 0, P = 0;
	bool ok = true;
	rep(i, M){
		LL t, p; cin >> t >> p;
		if (abs(p - P) > t - T) ok = false;
		T = t; P = p;
	}

	cout << (ok ? "Yes" : "No") << endl;

	return 0;
}
0