QOJ.ac

QOJ

ID题目提交者结果用时内存语言文件大小提交时间测评时间
#606050#8254. Water Journalenze114514WA 0ms3688kbC++201.1kb2024-10-02 21:50:002024-10-02 21:50:00

Judging History

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

  • [2024-10-02 21:50:00]
  • 评测
  • 测评结果:WA
  • 用时:0ms
  • 内存:3688kb
  • [2024-10-02 21:50:00]
  • 提交

answer

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;

#define pb push_back

const ld pi = 3.14159265358979323846;
const int mod = (int)1e9 + 7;
const ll INF = 1e18;

template<typename T>
T chmax(T a, T b) {
    return a > b ? a : b;
}

template<typename T>
T chmin(T a, T b) {
    return a > b ? b : a;
}

const int N = (int)1e5 + 1, M = N * 2;

void solve(){
    int n, l, r;
    cin >> n >> l >> r;

    int a[n];
    int f1 = 0, f2 = 0;
    for(int i = 0; i < n - 1; i++){
        cin >> a[i];
        if(a[i] == l) f1 = 1;
        if(a[i] == r) f2 = 1;
    }

    if(f1 && f2){
        for(int i = 1; i <= n; i++){
            cout << i << " ";
        } cout << endl;
    }
    else if(f1){
        cout << r << endl; 
    }
    else if(f2){
        cout << l << endl; 
    }
    else{
        cout << -1 << endl; 
    }
}

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout.tie(0);

    int t = 1;
    // cin >> t; 

    while(t--){
        solve();
    }

    return 0;
}

详细

Test #1:

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

input:

5 1 5
2
2
4
4

output:

-1

result:

ok single line: '-1'

Test #2:

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

input:

5 1 5
1
2
4
5

output:

1 2 3 4 5 

result:

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