Submission #525311

#TimeUsernameProblemLanguageResultExecution timeMemory
525311AdominatorBaloni (COCI15_baloni)C++17
0 / 100
61 ms11692 KiB
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define ar array #define vo vector #define pb push_back #define all(x) begin(x), end(x) #define sz(x) (ll)(x).size() #define rep(i, a, b) for(ll i=a; i<b; i++) #define repd(i, a, b) for(ll i=a; i>=b; i--) int main() { cin.tie(0)->sync_with_stdio(0); ll n; cin >> n; ll cnt[ll(1e6+1)]; memset(cnt, 0, sizeof cnt); rep(i, 0, n) { ll a; cin >> a; if(!cnt[a]) cnt[a-1]++; else cnt[a]--; cnt[a-1]++; } ll ans=0; rep(i, 0, ll(1e6+1)) ans+=cnt[i]; cout << ans << "\n"; }

Compilation message (stderr)

baloni.cpp: In function 'int main()':
baloni.cpp:28:3: warning: this 'else' clause does not guard... [-Wmisleading-indentation]
   28 |   else
      |   ^~~~
baloni.cpp:30:4: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'else'
   30 |    cnt[a-1]++;
      |    ^~~
#Verdict Execution timeMemoryGrader output
Fetching results...