結果

問題 No.2053 12345...
ユーザー デカブツデカブツ
提出日時 2022-08-21 13:54:14
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 1,723 bytes
コンパイル時間 10,798 ms
コンパイル使用メモリ 166,728 KB
実行使用メモリ 211,208 KB
最終ジャッジ日時 2024-10-10 06:09:06
合計ジャッジ時間 13,048 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
29,184 KB
testcase_01 AC 52 ms
28,928 KB
testcase_02 AC 54 ms
29,312 KB
testcase_03 AC 77 ms
36,736 KB
testcase_04 AC 92 ms
48,932 KB
testcase_05 AC 73 ms
33,920 KB
testcase_06 AC 89 ms
46,856 KB
testcase_07 AC 84 ms
41,984 KB
testcase_08 AC 83 ms
41,216 KB
testcase_09 AC 92 ms
49,188 KB
testcase_10 AC 99 ms
53,752 KB
testcase_11 AC 72 ms
33,536 KB
testcase_12 AC 69 ms
32,256 KB
testcase_13 AC 99 ms
53,040 KB
testcase_14 AC 79 ms
38,400 KB
testcase_15 AC 77 ms
36,864 KB
testcase_16 AC 78 ms
36,352 KB
testcase_17 AC 74 ms
34,816 KB
testcase_18 AC 101 ms
54,836 KB
testcase_19 AC 91 ms
49,816 KB
testcase_20 AC 69 ms
31,744 KB
testcase_21 AC 83 ms
41,472 KB
testcase_22 AC 55 ms
29,312 KB
testcase_23 AC 71 ms
32,896 KB
testcase_24 AC 76 ms
37,120 KB
testcase_25 AC 96 ms
53,084 KB
testcase_26 AC 84 ms
41,728 KB
testcase_27 AC 77 ms
37,120 KB
testcase_28 AC 77 ms
35,968 KB
testcase_29 AC 88 ms
47,028 KB
testcase_30 AC 74 ms
36,224 KB
testcase_31 AC 89 ms
48,608 KB
testcase_32 AC 101 ms
211,208 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (104 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections.Generic;

namespace test
{
    static class Program
    {
        static void Main()
        {
            long n = long.Parse(Console.ReadLine());
            string[] astr = Console.ReadLine().Split(' ');
            long[] a = new long[n];
            for(int i = 0; i < n; i++)
            {
                a[i] = long.Parse(astr[i]);
            }
            long l = 0;
            long r = 0;
            long kosuu = 0;
            while (true)
            {
                if(l == a.Length)
                {
                    break;
                }
                if (l == r)
                {
                    if (l == a.Length - 1)
                    {
                        break;
                    }
                    else
                    {
                        if (a[l] + 1 == a[l + 1])
                        {
                            r++;
                        }
                        else
                        {
                            l++;
                            r++;
                        }
                    }
                }
                else
                {
                    if (r+1 < a.Length && a[r] + 1 == a[r + 1])
                    {
                        r++;
                    }
                    else
                    {
                        kosuu += (r - l+1) * (r - l ) / 2;
                        if(r == a.Length)
                        {
                            break; 
                        }
                        l = r+1;
                        r = l;
                    }
                }
            }
            Console.WriteLine(kosuu);
        }
    }
}
0