QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#606068 | #8254. Water Journal | enze114514 | WA | 0ms | 3736kb | C++20 | 1.1kb | 2024-10-02 21:55:49 | 2024-10-02 21:55:50 |
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 << 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: 3608kb
input:
5 1 5 2 2 4 4
output:
-1
result:
ok single line: '-1'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
5 1 5 1 2 4 5
output:
1 2 3 4 5
result:
ok 5 lines
Test #3:
score: 0
Accepted
time: 0ms
memory: 3600kb
input:
5 1 5 1 2 3 4
output:
5
result:
ok single line: '5'
Test #4:
score: 0
Accepted
time: 0ms
memory: 3608kb
input:
5 1 5 2 4 5 1
output:
1 2 3 4 5
result:
ok 5 lines
Test #5:
score: 0
Accepted
time: 0ms
memory: 3736kb
input:
5 1 5 3 4 2 1
output:
5
result:
ok single line: '5'
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 3688kb
input:
8 12 12 12 12 12 12 12 12 12
output:
1 2 3 4 5 6 7 8
result:
wrong answer 1st lines differ - expected: '12', found: '1'