結果

問題 No.1268 Fruit Rush 2
ユーザー shinchanshinchan
提出日時 2020-10-23 23:59:00
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 2,562 ms
コンパイル使用メモリ 215,968 KB
実行使用メモリ 42,368 KB
最終ジャッジ日時 2024-07-21 13:59:13
合計ジャッジ時間 7,673 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 2 ms
5,376 KB
testcase_16 AC 134 ms
16,896 KB
testcase_17 AC 119 ms
16,256 KB
testcase_18 AC 126 ms
16,512 KB
testcase_19 AC 121 ms
16,256 KB
testcase_20 AC 121 ms
16,384 KB
testcase_21 AC 120 ms
16,128 KB
testcase_22 AC 137 ms
16,640 KB
testcase_23 AC 135 ms
16,768 KB
testcase_24 AC 123 ms
16,384 KB
testcase_25 AC 119 ms
16,384 KB
testcase_26 AC 230 ms
42,240 KB
testcase_27 AC 228 ms
42,240 KB
testcase_28 AC 227 ms
42,368 KB
testcase_29 AC 227 ms
42,240 KB
testcase_30 AC 229 ms
42,240 KB
testcase_31 AC 170 ms
17,280 KB
testcase_32 AC 172 ms
17,280 KB
testcase_33 AC 174 ms
17,280 KB
testcase_34 AC 205 ms
29,824 KB
testcase_35 AC 223 ms
29,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define be(v) (v).begin(),(v).end()
#define pb(q) push_back(q)
typedef long long ll;
using namespace std;
const ll mod=1000000007, INF=(1LL<<60);
#define doublecout(a) cout<<fixed<<setprecision(10)<<a<<endl;

int main() {
    cin.tie(0);
    cout.tie(0);
    ios::sync_with_stdio(false);
    ll n;
    cin >> n;
    vector<ll> a(n);
    for(int i=0;i<n;i++) cin >> a[i];
    sort(be(a));
    ll ans = 0;
    map<ll, ll> mp;
    for(int i=0;i<n;i++){
    	mp[a[i]]++;
    	mp[a[i] + 1] += mp[a[i] - 1]; 
    }
    for(auto& i: mp) ans += i.second;
    cout << ans << endl;
    return 0;
}
0