답안 #465973

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
465973 2021-08-17T12:59:29 Z fuad27 Exam (eJOI20_exam) C++17
0 / 100
18 ms 592 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main () {
    int n;
    cin >> n;
    int a[n], b[n];
    for(int i = 0;i<n;i++)cin>>a[i];
    for(int i =0;i<n;i++)cin>>b[i];
    int len = 0, check = false, ans = 0;
    for(int i = 0;i<n;i++) {
        if(a[i] > b[i]) {
            if(check) {
                ans+=len;
            }
            check = false;
            len = 0;
        }
        else {
            len++;
            if(a[i] == b[i])check = true;
        }
    }
    cout<<ans<<endl;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
2 Incorrect 18 ms 592 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 5 ms 332 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -