結果

問題 No.1205 Eye Drops
ユーザー rymg111rymg111
提出日時 2020-09-21 18:14:29
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 551 bytes
コンパイル時間 2,041 ms
コンパイル使用メモリ 75,332 KB
実行使用メモリ 59,608 KB
最終ジャッジ日時 2024-06-24 11:51:33
合計ジャッジ時間 8,984 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,000 KB
testcase_01 AC 108 ms
52,728 KB
testcase_02 AC 174 ms
54,332 KB
testcase_03 AC 126 ms
53,984 KB
testcase_04 AC 138 ms
54,200 KB
testcase_05 AC 160 ms
54,384 KB
testcase_06 AC 156 ms
54,420 KB
testcase_07 AC 122 ms
53,980 KB
testcase_08 AC 132 ms
53,956 KB
testcase_09 AC 141 ms
54,192 KB
testcase_10 AC 160 ms
54,196 KB
testcase_11 AC 176 ms
54,304 KB
testcase_12 AC 135 ms
54,080 KB
testcase_13 AC 167 ms
54,620 KB
testcase_14 AC 173 ms
54,536 KB
testcase_15 AC 163 ms
53,976 KB
testcase_16 AC 163 ms
54,304 KB
testcase_17 AC 125 ms
54,224 KB
testcase_18 AC 143 ms
54,312 KB
testcase_19 AC 139 ms
54,148 KB
testcase_20 AC 178 ms
54,588 KB
testcase_21 AC 130 ms
54,252 KB
testcase_22 AC 167 ms
54,232 KB
testcase_23 AC 176 ms
54,384 KB
testcase_24 AC 130 ms
53,880 KB
testcase_25 AC 127 ms
54,024 KB
testcase_26 AC 137 ms
54,048 KB
testcase_27 AC 124 ms
53,128 KB
testcase_28 AC 168 ms
54,124 KB
testcase_29 AC 146 ms
54,272 KB
testcase_30 AC 136 ms
54,132 KB
testcase_31 AC 138 ms
54,208 KB
testcase_32 AC 120 ms
54,220 KB
testcase_33 AC 118 ms
53,012 KB
testcase_34 AC 121 ms
53,916 KB
testcase_35 AC 117 ms
53,044 KB
testcase_36 AC 126 ms
54,028 KB
testcase_37 RE -
testcase_38 AC 117 ms
52,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		sc.nextInt();
		int infoNum = sc.nextInt();
		int prevKey = 0;
		int prevValue = 0;
		int nextKey = 0;
		int nextValue = 0;
		for(int i = 0; i < infoNum; i++) {
			nextKey = sc.nextInt();
			nextValue = sc.nextInt();
			if(Math.abs(nextKey - prevKey) < Math.abs(nextValue - prevValue)) {
				System.out.println("No");
				return;
			}
			prevKey = nextKey;
			prevValue = nextValue;
		}
		System.out.println("Yes");
	}
}
0