結果
問題 | No.1268 Fruit Rush 2 |
ユーザー | ok |
提出日時 | 2020-10-23 23:36:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 961 bytes |
コンパイル時間 | 1,244 ms |
コンパイル使用メモリ | 101,188 KB |
実行使用メモリ | 44,192 KB |
最終ジャッジ日時 | 2024-07-21 13:32:46 |
合計ジャッジ時間 | 8,427 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 2 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 2 ms
6,944 KB |
testcase_08 | AC | 2 ms
6,940 KB |
testcase_09 | AC | 2 ms
6,944 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 2 ms
6,944 KB |
testcase_13 | AC | 2 ms
6,944 KB |
testcase_14 | AC | 2 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,944 KB |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 424 ms
43,824 KB |
testcase_27 | AC | 422 ms
43,828 KB |
testcase_28 | AC | 430 ms
43,784 KB |
testcase_29 | AC | 428 ms
43,844 KB |
testcase_30 | AC | 426 ms
44,192 KB |
testcase_31 | AC | 297 ms
18,984 KB |
testcase_32 | AC | 297 ms
18,988 KB |
testcase_33 | AC | 224 ms
18,852 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
ソースコード
#include<iostream> #include<string> #include<iomanip> #include<cmath> #include<vector> #include<algorithm> #include<utility> #include<map> using namespace std; #define int long long #define endl "\n" constexpr long long INF = (long long)1e18; constexpr long long MOD = 1'000'000'007; struct fast_io { fast_io(){ std::cin.tie(nullptr); std::ios::sync_with_stdio(false); }; } fio; signed main(){ cout<<fixed<<setprecision(10); int N; vector<int> A; map<int,int> mp; int con = 0; cin>>N; // A.resize(N); for(int i = 0; i < N; i++){ int a; cin>>a; mp[a] = 1; A.push_back(a); A.push_back(a+1); } sort(A.begin(), A.end()); A.erase(unique(A.begin(), A.end()), A.end()); for(int i = 0; i < A.size(); i++){ if(mp[A[i]-1]) mp[A[i]] += mp[A[i]-2]; con += mp[A[i]]; } cout<<con<<endl; return 0; }