답안 #576502

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
576502 2022-06-13T06:51:28 Z mohammedMonem Exam (eJOI20_exam) C++14
0 / 100
2 ms 980 KB
#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define endl '\n'
#define space ' '
const int N = (int)1e5 + 20;

void Run(){
    ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
 #ifndef ONLINE_JUDGE
//    freopen("input.txt","r",stdin);
//    freopen("output.txt","w",stdout);
 #endif
}
string s,t;

int main()
{
    Run();
    //vars&input
    int t = 1;
//    cin >> t;
    while (t--) {
        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];
        
        //operations room
        int ans = 0,last_big = -1;
        for (int i = 0; i < n; i++) {
            if (a[i] == b[0]) ans += i - last_big;
            else if (a[i] > b[0]) last_big = i;
        }
            
        //output
        cout << ans;
    }
    
    return 0;
    
}	
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
2 Incorrect 1 ms 980 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 2 ms 980 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
2 Incorrect 1 ms 980 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 980 KB Output is correct
2 Incorrect 1 ms 980 KB Output isn't correct
3 Halted 0 ms 0 KB -