結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 20 ms
5,376 KB
testcase_04 AC 63 ms
9,728 KB
testcase_05 AC 12 ms
5,376 KB
testcase_06 AC 58 ms
8,960 KB
testcase_07 AC 40 ms
7,296 KB
testcase_08 AC 32 ms
6,912 KB
testcase_09 AC 66 ms
9,728 KB
testcase_10 AC 94 ms
12,032 KB
testcase_11 AC 11 ms
5,376 KB
testcase_12 AC 11 ms
5,376 KB
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 31 ms
6,784 KB
testcase_17 AC 24 ms
6,016 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 10 ms
5,376 KB
testcase_24 AC 24 ms
5,760 KB
testcase_25 AC 94 ms
11,648 KB
testcase_26 AC 41 ms
7,296 KB
testcase_27 AC 23 ms
5,760 KB
testcase_28 AC 19 ms
5,376 KB
testcase_29 AC 61 ms
8,832 KB
testcase_30 AC 20 ms
5,504 KB
testcase_31 AC 56 ms
8,448 KB
testcase_32 AC 108 ms
12,928 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,int>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