結果

問題 No.2053 12345...
ユーザー nononnonon
提出日時 2024-09-12 11:57:42
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 2,368 ms
コンパイル使用メモリ 209,060 KB
実行使用メモリ 20,480 KB
最終ジャッジ日時 2024-09-12 11:57:48
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 3 ms
6,940 KB
testcase_03 AC 24 ms
6,940 KB
testcase_04 AC 77 ms
11,904 KB
testcase_05 AC 15 ms
6,940 KB
testcase_06 AC 76 ms
10,880 KB
testcase_07 AC 49 ms
8,832 KB
testcase_08 AC 40 ms
8,320 KB
testcase_09 AC 80 ms
12,032 KB
testcase_10 AC 113 ms
14,976 KB
testcase_11 AC 13 ms
6,948 KB
testcase_12 AC 11 ms
6,944 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 34 ms
7,680 KB
testcase_17 AC 28 ms
7,040 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
6,944 KB
testcase_23 AC 11 ms
6,940 KB
testcase_24 AC 29 ms
6,940 KB
testcase_25 AC 110 ms
14,336 KB
testcase_26 AC 49 ms
8,704 KB
testcase_27 AC 27 ms
6,940 KB
testcase_28 AC 22 ms
6,944 KB
testcase_29 AC 71 ms
10,624 KB
testcase_30 AC 25 ms
6,944 KB
testcase_31 AC 67 ms
10,368 KB
testcase_32 AC 128 ms
16,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int N;
    cin>>N;
    map<int,long>mp;
    for(int i=0;i<N;i++)
    {
        int A;
        cin>>A;
        mp[A]+=mp[A-1]+1;
    }
    long ans=0;
    for(auto[key,val]:mp)ans+=val;
    cout<<ans-N<<endl;
}
0