# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
578687 | Trisanu_Das | Baloni (COCI15_baloni) | C++17 | 179 ms | 3752 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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 time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |