結果

問題 No.1205 Eye Drops
ユーザー Ryo MiyagiRyo Miyagi
提出日時 2020-09-21 18:01:44
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 719 bytes
コンパイル時間 2,476 ms
コンパイル使用メモリ 76,040 KB
実行使用メモリ 74,168 KB
最終ジャッジ日時 2024-06-24 11:51:10
合計ジャッジ時間 14,373 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,920 KB
testcase_01 AC 123 ms
54,012 KB
testcase_02 AC 187 ms
54,620 KB
testcase_03 AC 180 ms
54,344 KB
testcase_04 AC 166 ms
54,492 KB
testcase_05 AC 194 ms
57,328 KB
testcase_06 AC 176 ms
54,248 KB
testcase_07 AC 181 ms
54,388 KB
testcase_08 AC 197 ms
56,908 KB
testcase_09 AC 200 ms
56,912 KB
testcase_10 AC 199 ms
56,696 KB
testcase_11 AC 189 ms
54,364 KB
testcase_12 AC 198 ms
57,640 KB
testcase_13 AC 174 ms
54,332 KB
testcase_14 AC 196 ms
57,180 KB
testcase_15 AC 188 ms
54,388 KB
testcase_16 AC 156 ms
53,996 KB
testcase_17 AC 200 ms
57,136 KB
testcase_18 AC 152 ms
54,376 KB
testcase_19 AC 188 ms
56,908 KB
testcase_20 AC 186 ms
54,320 KB
testcase_21 AC 196 ms
57,036 KB
testcase_22 AC 193 ms
54,476 KB
testcase_23 AC 186 ms
54,168 KB
testcase_24 AC 186 ms
54,484 KB
testcase_25 AC 200 ms
56,916 KB
testcase_26 AC 190 ms
54,396 KB
testcase_27 AC 189 ms
54,508 KB
testcase_28 AC 174 ms
54,256 KB
testcase_29 AC 189 ms
54,636 KB
testcase_30 AC 200 ms
56,920 KB
testcase_31 AC 184 ms
54,604 KB
testcase_32 AC 868 ms
74,168 KB
testcase_33 AC 882 ms
71,924 KB
testcase_34 AC 863 ms
71,848 KB
testcase_35 AC 852 ms
74,024 KB
testcase_36 AC 882 ms
72,496 KB
testcase_37 RE -
testcase_38 AC 129 ms
54,324 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Map;
import java.util.Scanner;
import java.util.TreeMap;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int range = sc.nextInt();
		int infoNum = sc.nextInt();
		Map<Integer, Integer> info = new TreeMap<>();
		for (int i = 0; i < infoNum;) {
			info.put(sc.nextInt(), sc.nextInt());
			i++;
		}
		int key1 = 0;
		int value1 = 0;
		int key2 = 0;
		int value2 = 0;
		String judgement = "Yes";
		for(Integer key : info.keySet()) {
			key2 = key;
			value2 = info.get(key);
			if(Math.abs(key2 - key1) < Math.abs(value2 - value1)) {
				judgement = "No";
				break;
			}
			key1 = key2;
			value1 = value2;
		}
		System.out.println(judgement);
	}
}
0