# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
857508 | Trisanu_Das | Radio (COCI22_radio) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
long long n, q;
bool check[201];
int main() {
cin >> n >> q;
while(q--) {
char op; cin >> op;
if(op == 'S') {
int x; cin >> x;
a[x] = 1 - a[x];
}
else {
cin >> x >> y;
bool ans = 0;
for(int i = x; i <= y; i++) {
for(int j = i++; j <= y; j++) {
if(a[i] && a[j] && __gcd(i, j) > 1) {
ans = 1; break;
}
}
if(ans) break;
}
if(ans) cout << "DA\n"; else cout << "NE\n";
}
}
}