제출 #578687

#제출 시각아이디문제언어결과실행 시간메모리
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...