結果

問題 No.1205 Eye Drops
ユーザー tentententen
提出日時 2020-09-02 08:39:46
言語 Java21
(openjdk 21)
結果
AC  
実行時間 783 ms / 2,000 ms
コード長 614 bytes
コンパイル時間 2,506 ms
コンパイル使用メモリ 75,240 KB
実行使用メモリ 52,636 KB
最終ジャッジ日時 2024-11-23 21:03:07
合計ジャッジ時間 10,783 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,036 KB
testcase_01 AC 125 ms
41,048 KB
testcase_02 AC 187 ms
42,248 KB
testcase_03 AC 136 ms
41,000 KB
testcase_04 AC 150 ms
41,296 KB
testcase_05 AC 179 ms
41,560 KB
testcase_06 AC 159 ms
41,960 KB
testcase_07 AC 135 ms
41,544 KB
testcase_08 AC 145 ms
41,264 KB
testcase_09 AC 152 ms
41,572 KB
testcase_10 AC 161 ms
41,372 KB
testcase_11 AC 188 ms
42,012 KB
testcase_12 AC 143 ms
41,544 KB
testcase_13 AC 173 ms
42,060 KB
testcase_14 AC 181 ms
42,096 KB
testcase_15 AC 170 ms
41,360 KB
testcase_16 AC 163 ms
41,676 KB
testcase_17 AC 110 ms
39,688 KB
testcase_18 AC 141 ms
41,676 KB
testcase_19 AC 133 ms
41,704 KB
testcase_20 AC 171 ms
42,224 KB
testcase_21 AC 128 ms
40,488 KB
testcase_22 AC 161 ms
41,676 KB
testcase_23 AC 187 ms
42,140 KB
testcase_24 AC 131 ms
41,144 KB
testcase_25 AC 110 ms
39,836 KB
testcase_26 AC 140 ms
41,576 KB
testcase_27 AC 134 ms
41,264 KB
testcase_28 AC 167 ms
42,032 KB
testcase_29 AC 135 ms
41,032 KB
testcase_30 AC 140 ms
41,144 KB
testcase_31 AC 134 ms
41,136 KB
testcase_32 AC 124 ms
40,944 KB
testcase_33 AC 121 ms
40,932 KB
testcase_34 AC 114 ms
39,856 KB
testcase_35 AC 122 ms
40,940 KB
testcase_36 AC 127 ms
41,000 KB
testcase_37 AC 783 ms
52,636 KB
testcase_38 AC 129 ms
41,292 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int m = sc.nextInt();
        long prevT = 0;
        int prevP = 0;
        for (int i = 0; i < m; i++) {
            long t = sc.nextLong();
            int p = sc.nextInt();
            if (t - prevT < Math.abs(p - prevP)) {
                System.out.println("No");
                return;
            }
            prevT = t;
            prevP = p;
        }
        System.out.println("Yes");
    }
}
0