# |
제출 시각 |
아이디 |
문제 |
언어 |
결과 |
실행 시간 |
메모리 |
515956 |
2022-01-20T07:58:23 Z |
KoD |
Po (COCI21_po) |
C++17 |
|
11 ms |
1580 KB |
#include <bits/stdc++.h>
using std::vector;
using std::array;
using std::pair;
using std::tuple;
int main() {
std::ios_base::sync_with_stdio(false);
std::cin.tie(nullptr);
int N;
std::cin >> N;
vector<int> A(N);
int last = 0, ans = 0;
for (auto& x : A) {
std::cin >> x;
if (last < x) {
ans += 1;
}
last = x;
}
std::cout << ans << '\n';
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
204 KB |
Output isn't correct |
2 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
3 |
Incorrect |
0 ms |
204 KB |
Output isn't correct |
4 |
Incorrect |
3 ms |
584 KB |
Output isn't correct |
5 |
Incorrect |
4 ms |
716 KB |
Output isn't correct |
6 |
Correct |
11 ms |
1580 KB |
Output is correct |
7 |
Incorrect |
10 ms |
1572 KB |
Output isn't correct |