結果

問題 No.2053 12345...
ユーザー Nzt3Nzt3
提出日時 2022-09-24 18:23:46
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 210,936 KB
実行使用メモリ 21,120 KB
最終ジャッジ日時 2024-12-22 12:21:58
合計ジャッジ時間 5,999 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 3 ms
5,248 KB
testcase_03 AC 30 ms
6,400 KB
testcase_04 AC 90 ms
12,160 KB
testcase_05 AC 18 ms
5,376 KB
testcase_06 AC 94 ms
11,136 KB
testcase_07 AC 60 ms
8,728 KB
testcase_08 AC 46 ms
8,448 KB
testcase_09 AC 98 ms
12,288 KB
testcase_10 AC 141 ms
15,360 KB
testcase_11 AC 16 ms
5,248 KB
testcase_12 AC 13 ms
5,248 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 35 ms
7,808 KB
testcase_17 AC 30 ms
6,912 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 13 ms
5,248 KB
testcase_24 AC 34 ms
6,784 KB
testcase_25 AC 139 ms
14,976 KB
testcase_26 AC 61 ms
8,832 KB
testcase_27 AC 35 ms
6,400 KB
testcase_28 AC 28 ms
5,888 KB
testcase_29 AC 88 ms
10,880 KB
testcase_30 AC 29 ms
6,272 KB
testcase_31 AC 84 ms
10,368 KB
testcase_32 AC 158 ms
16,512 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  int N;
  cin>>N;
  vector<int>A(N);
  for(int &i:A)cin>>i;
  map<int,long long>cnt;
  long long ans=0;
  for(int i=0;i<N;i++){
    ans+=cnt[A[i]-1];
    cnt[A[i]]+=cnt[A[i]-1]+1;
  }
  cout<<ans<<'\n';
}
0