結果

問題 No.2053 12345...
ユーザー keisuke6keisuke6
提出日時 2022-11-11 07:30:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 82 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 2,024 ms
コンパイル使用メモリ 204,092 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-09-13 02:38:00
合計ジャッジ時間 4,983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 20 ms
6,948 KB
testcase_04 AC 56 ms
6,940 KB
testcase_05 AC 13 ms
6,940 KB
testcase_06 AC 50 ms
6,944 KB
testcase_07 AC 36 ms
6,940 KB
testcase_08 AC 33 ms
6,940 KB
testcase_09 AC 55 ms
6,944 KB
testcase_10 AC 75 ms
6,940 KB
testcase_11 AC 13 ms
6,944 KB
testcase_12 AC 8 ms
6,940 KB
testcase_13 AC 73 ms
6,944 KB
testcase_14 AC 24 ms
6,944 KB
testcase_15 AC 22 ms
6,944 KB
testcase_16 AC 21 ms
6,940 KB
testcase_17 AC 15 ms
6,944 KB
testcase_18 AC 82 ms
6,944 KB
testcase_19 AC 58 ms
6,944 KB
testcase_20 AC 7 ms
6,944 KB
testcase_21 AC 35 ms
6,940 KB
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 10 ms
6,940 KB
testcase_24 AC 22 ms
6,944 KB
testcase_25 AC 72 ms
6,940 KB
testcase_26 AC 35 ms
6,944 KB
testcase_27 AC 21 ms
6,940 KB
testcase_28 AC 18 ms
6,940 KB
testcase_29 AC 48 ms
6,940 KB
testcase_30 AC 19 ms
6,944 KB
testcase_31 AC 45 ms
6,940 KB
testcase_32 AC 81 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define int long long
signed main(){
    int N;
    cin>>N;
    vector<int> S(N);
    for(int i=0;i<N;i++) cin>>S[i];
    vector<int> T={};
    int now = 1;
    for(int i=1;i<N;i++){
        if(S[i] == S[i-1]+1) now++;
        else{
            T.push_back(now);
            now = 1;
        } 
    }
    T.push_back(now);
    int ans = 0;
    for(int i=0;i<T.size();i++) ans += T[i]*(T[i]-1)/2;
    cout<<ans<<endl;
}
0