結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 3 ms
6,944 KB
testcase_03 AC 29 ms
6,944 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 16 ms
6,940 KB
testcase_06 AC 88 ms
11,136 KB
testcase_07 AC 55 ms
8,728 KB
testcase_08 AC 42 ms
8,320 KB
testcase_09 AC 89 ms
12,160 KB
testcase_10 AC 128 ms
15,488 KB
testcase_11 AC 14 ms
6,940 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 32 ms
7,784 KB
testcase_17 AC 27 ms
6,944 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,940 KB
testcase_23 AC 13 ms
6,944 KB
testcase_24 AC 32 ms
6,940 KB
testcase_25 AC 125 ms
14,976 KB
testcase_26 AC 55 ms
8,832 KB
testcase_27 AC 30 ms
6,940 KB
testcase_28 AC 24 ms
6,940 KB
testcase_29 AC 80 ms
10,880 KB
testcase_30 AC 28 ms
6,940 KB
testcase_31 AC 74 ms
10,496 KB
testcase_32 AC 145 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