# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
636801 | 2022-08-30T08:45:44 Z | lovrot | Boat (APIO16_boat) | C++11 | 0 ms | 212 KB |
#include <bits/stdc++.h> using namespace std; const int N = 510; int n; int a[N], b[N]; int main(){ scanf("%d", &n); for(int i = 0; i < n; i++){ scanf("%d%d", &a[i], &b[i]); } int ans = 1; for(int i = n - 2; i > -1; i--){ // printf("%d\n", i); if(a[i] <= a[i + 1]) ans++; else break; } printf("%d\n", ans); return 0; }
Compilation message
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 0 ms | 212 KB | Output isn't correct |
2 | Halted | 0 ms | 0 KB | - |