結果

問題 No.1205 Eye Drops
ユーザー ks2mks2m
提出日時 2020-08-30 13:04:02
言語 Java21
(openjdk 21)
結果
AC  
実行時間 352 ms / 2,000 ms
コード長 755 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 73,500 KB
実行使用メモリ 47,532 KB
最終ジャッジ日時 2024-11-23 20:33:30
合計ジャッジ時間 7,737 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,656 KB
testcase_01 AC 51 ms
37,068 KB
testcase_02 AC 67 ms
37,472 KB
testcase_03 AC 74 ms
37,324 KB
testcase_04 AC 62 ms
37,324 KB
testcase_05 AC 94 ms
38,252 KB
testcase_06 AC 64 ms
36,896 KB
testcase_07 AC 70 ms
37,608 KB
testcase_08 AC 89 ms
37,808 KB
testcase_09 AC 90 ms
37,932 KB
testcase_10 AC 84 ms
38,312 KB
testcase_11 AC 79 ms
37,732 KB
testcase_12 AC 90 ms
37,976 KB
testcase_13 AC 56 ms
37,152 KB
testcase_14 AC 89 ms
38,336 KB
testcase_15 AC 75 ms
37,952 KB
testcase_16 AC 56 ms
36,956 KB
testcase_17 AC 82 ms
38,208 KB
testcase_18 AC 54 ms
37,112 KB
testcase_19 AC 85 ms
37,732 KB
testcase_20 AC 74 ms
37,628 KB
testcase_21 AC 88 ms
38,184 KB
testcase_22 AC 80 ms
37,648 KB
testcase_23 AC 62 ms
36,868 KB
testcase_24 AC 76 ms
38,116 KB
testcase_25 AC 82 ms
38,376 KB
testcase_26 AC 72 ms
37,584 KB
testcase_27 AC 62 ms
37,120 KB
testcase_28 AC 61 ms
37,008 KB
testcase_29 AC 81 ms
38,008 KB
testcase_30 AC 85 ms
37,996 KB
testcase_31 AC 65 ms
37,264 KB
testcase_32 AC 348 ms
47,528 KB
testcase_33 AC 352 ms
46,700 KB
testcase_34 AC 342 ms
47,508 KB
testcase_35 AC 314 ms
47,128 KB
testcase_36 AC 343 ms
47,532 KB
testcase_37 AC 328 ms
47,352 KB
testcase_38 AC 52 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
//		int n = Integer.parseInt(sa[0]);
		int m = Integer.parseInt(sa[1]);
		long[] t = new long[m];
		int[] p = new int[m];
		for (int i = 0; i < m; i++) {
			sa = br.readLine().split(" ");
			t[i] = Long.parseLong(sa[0]);
			p[i] = Integer.parseInt(sa[1]);
		}
		br.close();

		long nt = 0;
		long np = 0;
		for (int i = 0; i < m; i++) {
			if (t[i] - nt < Math.abs(p[i] - np)) {
				System.out.println("No");
				return;
			}
			nt = t[i];
			np = p[i];
		}
		System.out.println("Yes");
	}
}
0