답안 #465979

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
465979 2021-08-17T13:06:41 Z fuad27 Exam (eJOI20_exam) C++17
0 / 100
17 ms 596 KB
#include<bits/stdc++.h>
using namespace std;
#define int long long
int32_t main () {
    long long n;
    cin >> n;
    long long a[n], b[n];
    for(int i = 0;i<n;i++)cin>>a[i];
    for(int i =0;i<n;i++)cin>>b[i];
    long long len = 0;
    bool check = false;
    long long ans = 0;
    for(int i = 0;i<n;i++) {
        if(a[i] > b[i]) {
            if(check) {
                ans+=len;
            }
            check = false;
            len = 0;
        }
        else if(a[i] <= b[i]){
            if(a[i] == b[i])check = true;
            len++;
        }
    }
    cout<<ans<<'\n';
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 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 17 ms 596 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 356 KB Output isn't correct
2 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 0 ms 204 KB Output isn't correct
2 Halted 0 ms 0 KB -