Submission #578687

#TimeUsernameProblemLanguageResultExecution timeMemory
578687Trisanu_DasBaloni (COCI15_baloni)C++17
0 / 100
179 ms3752 KiB
#include <bits/stdc++.h> using namespace std; int main(){ int n; cin >> n; int a[n]; for(int i = 0; i < n; i++) cin >> a[i]; int ans = 0; for(int i = 0; i < n - 1; i++) if(a[i] < a[i + 1]) ans++; cout << ans << '\n'; }
#Verdict Execution timeMemoryGrader output
Fetching results...