結果

問題 No.1137 Circles
ユーザー kokatsukokatsu
提出日時 2021-11-16 19:56:21
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 2,239 ms
コンパイル使用メモリ 205,508 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 13:18:03
合計ジャッジ時間 3,758 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 52 ms
6,944 KB
testcase_02 AC 5 ms
6,940 KB
testcase_03 AC 28 ms
6,940 KB
testcase_04 AC 40 ms
6,944 KB
testcase_05 AC 10 ms
6,944 KB
testcase_06 AC 45 ms
6,944 KB
testcase_07 AC 21 ms
6,944 KB
testcase_08 AC 47 ms
6,944 KB
testcase_09 AC 15 ms
6,940 KB
testcase_10 AC 25 ms
6,940 KB
testcase_11 AC 27 ms
6,940 KB
testcase_12 AC 59 ms
6,940 KB
testcase_13 AC 18 ms
6,944 KB
testcase_14 AC 57 ms
6,940 KB
testcase_15 AC 19 ms
6,940 KB
testcase_16 AC 29 ms
6,940 KB
testcase_17 AC 5 ms
6,944 KB
testcase_18 AC 47 ms
6,940 KB
testcase_19 AC 19 ms
6,944 KB
testcase_20 AC 14 ms
6,944 KB
testcase_21 AC 3 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    int N;
    readf("%d\n", N);

    int M = 2 * 10 ^^ 5;
    auto dp = new int[](M*2+1);
    foreach (i; 0 .. N) {
        int x, r;
        readf("%d %d\n", x, r);

        ++dp[M+x-r], --dp[M+x+r];
    }

    int res;
    foreach (i; 1 .. M*2+1) {
        dp[i] += dp[i-1];

        res = max(res, dp[i]);
    }

    res.writeln;
}
0