結果

問題 No.1205 Eye Drops
ユーザー xRS43BofaUEZ5gcxRS43BofaUEZ5gc
提出日時 2021-03-03 10:32:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 3,601 ms
コンパイル使用メモリ 74,748 KB
実行使用メモリ 53,004 KB
最終ジャッジ日時 2024-10-03 03:09:29
合計ジャッジ時間 15,284 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,116 KB
testcase_01 AC 132 ms
41,216 KB
testcase_02 AC 167 ms
41,636 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 166 ms
41,924 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 181 ms
41,740 KB
testcase_12 WA -
testcase_13 AC 154 ms
41,396 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 152 ms
41,524 KB
testcase_17 WA -
testcase_18 AC 145 ms
41,400 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 168 ms
41,804 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 644 ms
48,600 KB
testcase_33 AC 651 ms
53,004 KB
testcase_34 AC 672 ms
48,516 KB
testcase_35 AC 671 ms
52,748 KB
testcase_36 AC 659 ms
49,092 KB
testcase_37 RE -
testcase_38 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class HelloWorld {

	    public static void main(String[] args) throws Exception {

	    	Scanner sc = new Scanner(System.in);
	    	String[] str = sc.nextLine().split(" ");
	    	int n = 0;
	    	int m = Integer.parseInt(str[1]);
	    	boolean flag = true;

	    	for (int i = 0; i < m; i ++) {
	    		str = sc.nextLine().split(" ");
	    		if (Integer.parseInt(str[0]) >= n + Integer.parseInt(str[1])) {
	    			n = Integer.parseInt(str[1]);
	    		}else {
	    			flag = false;
	    		}
	    	}

	    	System.out.println(flag ? "Yes" : "No");

	    	}

}
0