結果

問題 No.2053 12345...
ユーザー kokatsukokatsu
提出日時 2022-10-14 00:49:37
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 303 bytes
コンパイル時間 2,413 ms
コンパイル使用メモリ 209,588 KB
実行使用メモリ 11,808 KB
最終ジャッジ日時 2024-06-22 16:22:52
合計ジャッジ時間 4,338 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 27 ms
9,660 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 25 ms
8,164 KB
testcase_07 AC 18 ms
6,940 KB
testcase_08 AC 17 ms
6,940 KB
testcase_09 AC 29 ms
8,544 KB
testcase_10 AC 37 ms
10,528 KB
testcase_11 AC 7 ms
6,940 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 36 ms
10,820 KB
testcase_14 AC 13 ms
6,944 KB
testcase_15 AC 12 ms
6,944 KB
testcase_16 AC 12 ms
6,940 KB
testcase_17 AC 8 ms
6,940 KB
testcase_18 AC 39 ms
11,808 KB
testcase_19 AC 29 ms
9,340 KB
testcase_20 AC 4 ms
6,940 KB
testcase_21 AC 18 ms
6,940 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 5 ms
6,940 KB
testcase_24 AC 12 ms
6,944 KB
testcase_25 AC 36 ms
11,476 KB
testcase_26 AC 17 ms
6,944 KB
testcase_27 AC 11 ms
6,940 KB
testcase_28 AC 9 ms
6,940 KB
testcase_29 AC 24 ms
7,468 KB
testcase_30 AC 10 ms
6,944 KB
testcase_31 AC 23 ms
7,488 KB
testcase_32 AC 38 ms
11,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

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

    auto A = readln.chomp.split.to!(long[]);

    long res, r;
    foreach (l; 0 .. N-1) {
        while (r < N -1 && A[r] + 1 == A[r+1]) {
            ++r;
        }

        res += r - l;

        if (l == r) ++r;
    }

    res.writeln;
}
0