結果

問題 No.2053 12345...
ユーザー butsurizukibutsurizuki
提出日時 2022-08-21 04:08:49
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 62 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 9,641 ms
コンパイル使用メモリ 336,792 KB
実行使用メモリ 15,492 KB
最終ジャッジ日時 2024-10-09 19:07:37
合計ジャッジ時間 12,392 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,820 KB
testcase_03 AC 16 ms
6,816 KB
testcase_04 AC 45 ms
13,492 KB
testcase_05 AC 12 ms
6,816 KB
testcase_06 AC 40 ms
12,872 KB
testcase_07 AC 28 ms
8,556 KB
testcase_08 AC 27 ms
9,024 KB
testcase_09 AC 43 ms
13,336 KB
testcase_10 AC 57 ms
14,276 KB
testcase_11 AC 10 ms
6,820 KB
testcase_12 AC 7 ms
6,820 KB
testcase_13 AC 56 ms
13,684 KB
testcase_14 AC 21 ms
8,968 KB
testcase_15 AC 18 ms
6,820 KB
testcase_16 AC 16 ms
6,816 KB
testcase_17 AC 13 ms
6,816 KB
testcase_18 AC 62 ms
15,492 KB
testcase_19 AC 46 ms
13,140 KB
testcase_20 AC 6 ms
6,820 KB
testcase_21 AC 28 ms
8,664 KB
testcase_22 AC 3 ms
6,820 KB
testcase_23 AC 8 ms
6,816 KB
testcase_24 AC 18 ms
6,820 KB
testcase_25 AC 55 ms
14,172 KB
testcase_26 AC 27 ms
9,188 KB
testcase_27 AC 17 ms
6,820 KB
testcase_28 AC 15 ms
6,816 KB
testcase_29 AC 38 ms
13,004 KB
testcase_30 AC 15 ms
6,820 KB
testcase_31 AC 36 ms
13,144 KB
testcase_32 AC 60 ms
14,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "testlib.h"
#include <bits/stdc++.h>

using namespace std;

int main(int argc, char* argv[]){
  registerValidation(argc, argv);

  long long n=inf.readLong(2ll,200000ll);inf.readEoln();
  vector<long long> a=inf.readLongs(n,1ll,1000000000ll);inf.readEoln();
  inf.readEof();
  a.push_back(-1);
  long long curl=1,res=0;
  for(long long i=1;i<=n;i++){
    if(a[i-1]+1 == a[i]){curl++;}
    else{
      res+=(curl*(curl-1))/2;
      curl=1;
    }
  }
  cout << res << "\n";
  return 0;
}
0