結果

問題 No.1205 Eye Drops
ユーザー yama2019yama2019
提出日時 2020-09-25 17:49:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 2,088 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 77,584 KB
実行使用メモリ 51,872 KB
最終ジャッジ日時 2024-06-28 05:54:24
合計ジャッジ時間 6,029 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,020 KB
testcase_01 AC 54 ms
50,344 KB
testcase_02 AC 55 ms
50,188 KB
testcase_03 AC 56 ms
50,304 KB
testcase_04 AC 54 ms
50,420 KB
testcase_05 AC 56 ms
50,260 KB
testcase_06 AC 55 ms
49,920 KB
testcase_07 AC 54 ms
50,276 KB
testcase_08 AC 55 ms
50,344 KB
testcase_09 AC 55 ms
49,932 KB
testcase_10 AC 55 ms
50,080 KB
testcase_11 AC 56 ms
49,928 KB
testcase_12 AC 56 ms
51,824 KB
testcase_13 AC 54 ms
50,392 KB
testcase_14 AC 55 ms
50,388 KB
testcase_15 AC 55 ms
50,184 KB
testcase_16 AC 54 ms
50,456 KB
testcase_17 AC 55 ms
50,196 KB
testcase_18 AC 55 ms
50,148 KB
testcase_19 AC 54 ms
50,252 KB
testcase_20 AC 56 ms
50,188 KB
testcase_21 AC 55 ms
50,008 KB
testcase_22 AC 55 ms
50,216 KB
testcase_23 AC 55 ms
50,200 KB
testcase_24 AC 54 ms
50,368 KB
testcase_25 AC 54 ms
50,236 KB
testcase_26 AC 55 ms
50,428 KB
testcase_27 AC 56 ms
50,180 KB
testcase_28 AC 55 ms
50,060 KB
testcase_29 AC 55 ms
50,256 KB
testcase_30 AC 54 ms
50,268 KB
testcase_31 AC 55 ms
50,192 KB
testcase_32 AC 55 ms
50,108 KB
testcase_33 AC 54 ms
50,344 KB
testcase_34 AC 56 ms
50,368 KB
testcase_35 AC 55 ms
50,360 KB
testcase_36 AC 56 ms
50,208 KB
testcase_37 AC 140 ms
51,872 KB
testcase_38 AC 55 ms
49,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    static MyReader in = new MyReader();

    public static void main(String[] args) {
        int N = in.i();
        int M = in.i();
        int t0 = 0;
        int p0 = 0;
        String ans = "Yes";
        for (int i = 0; i < M; i++) {
            int t1 = in.i();
            int p1 = in.i();
            if (t1 - t0 < Math.abs(p1 - p0)) {
                ans = "No";
                break;
            }
            t0 = t1;
            p0 = p1;
        }
        System.out.println(ans);
    }
}

class MyReader extends BufferedReader {
    char[] cbuf = new char[1024];
    int head = 0;
    int tail = 0;

    MyReader() {
        super(new InputStreamReader(System.in));
    }

    char next() {
        if (head == tail) {
            try {
                tail = super.read(cbuf, 0, cbuf.length);
            } catch (IOException e) {
                e.printStackTrace();
            }
            head = 0;
        }
        return cbuf[head++];
    }

    int i() {
        int k = next() - '0';
        boolean minus = k == -3;
        int n = minus ? 0 : k;
        while (0 <= (k = next() - '0') && k <= 9) n = 10 * n + k;
        return minus ? -n : n;
    }

    int[] ii(final int N) {
        int[] a = new int[N];
        for (int j = 0; j < a.length; j++) a[j] = i();
        return a;
    }

    long l() {
        int k = next() - '0';
        boolean minus = k == -3;
        long n = minus ? 0 : k;
        while (0 <= (k = next() - '0') && k <= 9) n = 10 * n + k;
        return minus ? -n : n;
    }

    char[] s(final int N) {
        char[] s = new char[N];
        for (int i = 0; i < N; i++) {
            s[i] = next();
        }
        next();
        return s;
    }

    public int read(char[] cbuf) {
        int i;
        char c;
        for (i = 0; (c = next()) != ' ' && c != '\n'; i++) cbuf[i] = c;
        return i;
    }

    public String readLine() {
        try {
            return super.readLine();
        } catch (IOException e) {
            return null;
        }
    }
}
0