QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#315056#4935. Exchange Bottleneckyuyutw#WA 0ms3668kbC++14651b2024-01-26 21:03:462024-01-26 21:03:46

Judging History

你现在查看的是最新测评结果

  • [2024-01-26 21:03:46]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3668kb
  • [2024-01-26 21:03:46]
  • 提交

answer

#include<bits/stdc++.h>
using namespace std;
#define ll long long
#define io ios::sync_with_stdio(0), cin.tie(0);
#define endl '\n'
#define MXN (ll)1e6+5
int main(){
    int n;
    cin >> n;
    int arr[n-1];
    int nw = 0, mx = 0, flag = 0, ans = 0, a1 = 0;
    for(int i=0;i<n-1;i++) {
        cin >> arr[i];
        if(arr[i]) {
            flag = 1;
            a1++;
            nw = 0;
        } else {
            flag = 0;
            nw++;
        }
    }
    if(a1 == n-1) {
        cout << 1 << endl;
    } else if(flag) {
        cout << 2 << endl;
    } else {
        cout << max(nw+1, 2) << endl;
    }
 } 

详细

Test #1:

score: 100
Accepted
time: 0ms
memory: 3668kb

input:

5
1 0 1 0

output:

2

result:

ok single line: '2'

Test #2:

score: 0
Accepted
time: 0ms
memory: 3516kb

input:

7
1 1 1 1 1 1

output:

1

result:

ok single line: '1'

Test #3:

score: -100
Wrong Answer
time: 0ms
memory: 3612kb

input:

2
0

output:

2

result:

wrong answer 1st lines differ - expected: '1', found: '2'