QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#343745 | #8254. Water Journal | EsraaSyam# | WA | 1ms | 3740kb | C++20 | 1.3kb | 2024-03-03 00:06:07 | 2024-03-03 00:06:07 |
Judging History
answer
#include "bits/stdc++.h"
using namespace std;
#define nl "\n"
#define ll long long
#define all(v) v.begin(), v.end()
#define rall(v) v.rbegin(), v.rend()
#define sz(v) (int) v.size()
template<typename T = int>
istream &operator>>(istream &in, vector<T> &v) {
for (auto &x: v) in >> x;
return in;
}
template<typename T = int>
ostream &operator<<(ostream &out, const vector<T> &v) {
for (const T &x: v) out << x << " ";
return out;
}
void Sira() {
ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr);
#ifndef ONLINE_JUDGE
freopen("input.txt", "r", stdin), freopen("output.txt", "w", stdout);
#endif
}
void solve(){
int n , a , b;
cin >> n >> a >> b;
bool ok_a = false , ok_b = false;
for(int i = 0 ; i < n - 1 ; i++){
int x;
cin >> x;
if(x == a) ok_a = true;
if(x == b) ok_b = true;
}
if(ok_a and ok_b){
for(int i = 1 ; i <= n ; i++){
cout << i << nl;
}
}else if(!ok_a and !ok_b){
cout << -1 << nl;
}else{
if(!ok_a){
cout << a << nl;
}else{
cout << b << nl;
}
}
}
int main() {
Sira();
int t = 1;
// cin >> t;
while(t--){
solve();
}
return 0;
}
Details
Tip: Click on the bar to expand more detailed information
Test #1:
score: 100
Accepted
time: 0ms
memory: 3616kb
input:
5 1 5 2 2 4 4
output:
-1
result:
ok single line: '-1'
Test #2:
score: 0
Accepted
time: 0ms
memory: 3656kb
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: 3664kb
input:
5 1 5 1 2 3 4
output:
5
result:
ok single line: '5'
Test #4:
score: 0
Accepted
time: 1ms
memory: 3740kb
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: 3612kb
input:
5 1 5 3 4 2 1
output:
5
result:
ok single line: '5'
Test #6:
score: -100
Wrong Answer
time: 0ms
memory: 3616kb
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'