QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#606050 | #8254. Water Journal | enze114514 | WA | 0ms | 3688kb | C++20 | 1.1kb | 2024-10-02 21:50:00 | 2024-10-02 21:50:00 |
Judging History
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 '