QOJ.ac
QOJ
ID | Problem | Submitter | Result | Time | Memory | Language | File size | Submit time | Judge time |
---|---|---|---|---|---|---|---|---|---|
#135144 | #5742. Garbage Disposal | tselmegkh# | WA | 1ms | 3636kb | C++20 | 1.1kb | 2023-08-05 12:07:34 | 2023-08-05 12:07:36 |
Judging History
answer
#include <iostream>
#include <algorithm>
#include <vector>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <iomanip>
using namespace std;
const int N = 2e5 + 5, inf = 1e9;
#define pb push_back
#define mp make_pair
#define ll long long
#define ff first
#define ss second
#define all(a) a.begin(),a.end()
#define sz(x) (int)x.size()
typedef vector<int> vi;
typedef pair<int,int> ii;
typedef vector<ii> vii;
void solve(){
int l, r;
cin >> l >> r;
int idx = -1;
for(int i = l; i < r; i++){
if(__gcd(r, i) == 1){
idx = i;
break;
}
}
if(idx == -1 || idx != l){
cout << "-1\n";
return;
}
for(int i = l; i <= r; i++){
if(i != r)cout << i + 1 << ' ';
else cout << idx << ' ';
}
cout << '\n';
}
int main(){
ios_base::sync_with_stdio(false);cin.tie(0);cout.tie(0);
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: 3636kb
input:
3 1 5 10 13 100 100
output:
2 3 4 5 1 11 12 13 10 -1
result:
ok 3 cases (3 test cases)
Test #2:
score: -100
Wrong Answer
time: 1ms
memory: 3468kb
input:
2 1 1 10 12
output:
-1 -1
result:
wrong answer Jury found answer but participant didn't (test case 1)