結果

問題 No.2053 12345...
ユーザー kakel-sankakel-san
提出日時 2022-08-28 20:44:25
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 1,103 ms
コンパイル使用メモリ 111,716 KB
実行使用メモリ 39,296 KB
最終ジャッジ日時 2024-10-15 17:42:51
合計ジャッジ時間 5,675 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
18,944 KB
testcase_01 AC 27 ms
19,072 KB
testcase_02 AC 33 ms
19,584 KB
testcase_03 AC 51 ms
23,936 KB
testcase_04 AC 95 ms
35,584 KB
testcase_05 AC 44 ms
21,120 KB
testcase_06 AC 89 ms
34,560 KB
testcase_07 AC 68 ms
27,264 KB
testcase_08 AC 65 ms
26,752 KB
testcase_09 AC 96 ms
35,712 KB
testcase_10 AC 115 ms
38,272 KB
testcase_11 AC 44 ms
21,264 KB
testcase_12 AC 38 ms
20,736 KB
testcase_13 AC 111 ms
37,760 KB
testcase_14 AC 56 ms
24,192 KB
testcase_15 AC 53 ms
24,300 KB
testcase_16 AC 52 ms
24,064 KB
testcase_17 AC 46 ms
21,376 KB
testcase_18 AC 121 ms
39,168 KB
testcase_19 AC 99 ms
36,096 KB
testcase_20 AC 38 ms
20,608 KB
testcase_21 AC 69 ms
27,136 KB
testcase_22 AC 33 ms
19,712 KB
testcase_23 AC 40 ms
21,444 KB
testcase_24 AC 54 ms
24,256 KB
testcase_25 AC 112 ms
38,016 KB
testcase_26 AC 68 ms
27,264 KB
testcase_27 AC 53 ms
24,288 KB
testcase_28 AC 49 ms
23,424 KB
testcase_29 AC 87 ms
34,176 KB
testcase_30 AC 51 ms
23,936 KB
testcase_31 AC 86 ms
33,536 KB
testcase_32 AC 120 ms
39,296 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    static void Main()
    {
        var n = NN;
        var a = NList;
        var res = 0L;
        var cnt = 1L;
        for (var i = 0; i < a.Length; ++i)
        {
            if (i + 1 < a.Length && a[i + 1] - a[i] == 1)
            {
                ++cnt;
            }
            else
            {
                res += cnt * (cnt - 1) / 2;
                cnt = 1;
            }
        }
        WriteLine(res);
    }
}
0