이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int gcd(int a, int b){
while (b){
a %= b;
swap(a, b);
}
return a;
}
int main() {
int n, q; cin >> n >> q;
vector<bool> v(n+1);
for (int i = 0; i < q; ++i){
char t; cin >> t;
if (t == 'S') {
int x; cin >> x;
v[x] = !v[x];
} else{
int l, r; cin >> l >> r;
bool flag = true;
for (int j = l; j <= r; ++j){
if (!v[j]) continue;
for (int f = j + 1; f <= r; ++f){
if (!v[f]) continue;
if (gcd(j, f) > 1) flag = false;
}
}
if (flag) cout << "NE\n";
else cout << "DA\n";
}
}
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |