답안 #576581

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
576581 2022-06-13T08:14:40 Z Naser Exam (eJOI20_exam) C++17
0 / 100
1 ms 340 KB
#include <bits/stdc++.h>
#define endl '\n'
#define int long long
#define pii pair<int,int>
#define vint vector<int>
#define se second
#define fi first
#define pb push_back
#define all(x) x.begin(), x.end()
using namespace std; 

int32_t main() {

    ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);


    int t = 1;
     //cin >> t;
    while (t--) {
        int n,b;
        cin >> n;
        vint a(n);
        vint bb(n);
        for (int i = 0;i < n;i++) {
            cin >> a[i];
        }
        cin >> b;
        int cnt = 0; bool x = false;
        for (int i = 0; i < n; i++) {
            if (a[i] == b) {
                x = true;
            }
            cnt++;
        }
        int dis = 0;
        for(int i = 0; i < n; i++){
            if(a[i] > b){
                dis = i + 1;
            }
            if(a[i] == b){
                break;
            }
        }
        cnt-=dis; dis = 0;
        for(int i = n - 1; i >=0; i--){
            if(a[i] > b){
                dis = n - i;
            }
            if(a[i] == b){
                break;
            }
        }
        cnt-=dis;
        if (1) {
            cout << cnt << endl;
        }
        else {
            cout << 0 << endl;
        }
    }
}

Compilation message

exam.cpp: In function 'int32_t main()':
exam.cpp:28:27: warning: variable 'x' set but not used [-Wunused-but-set-variable]
   28 |         int cnt = 0; bool x = false;
      |                           ^
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 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 1 ms 340 KB Output isn't correct
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -