# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
381896 | VEGAnn | Vepar (COCI21_vepar) | C++14 | 1601 ms | 74868 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MX = int(1e7) + 10;
const int oo = 2e9;
int mn[MX], cnt[MX], now;
int main(){
ios_base::sync_with_stdio(0); cin.tie(0);
#ifdef _LOCAL
freopen("in.txt","r",stdin);
#endif // _LOCAL
fill(mn, mn + MX, oo);
for (int i = 2; i < MX; i++){
if (mn[i] < oo) continue;
mn[i] = i;
if (ll(i) * ll(i) > MX) continue;
for (int j = i * i; j < MX; j += i)
mn[j] = min(mn[j], i);
}
int qq; cin >> qq;
for (; qq; qq--){
memset(cnt, sizeof(cnt), 0);
int a, b, c, d;
cin >> a >> b >> c >> d;
for (int i = c; i <= d; i++){
now = i;
while (now > 1){
cnt[mn[now]]++;
now /= mn[now];
}
}
bool ok = 1;
for (int i = a; i <= b && ok; i++){
now = i;
while (now > 1){
cnt[mn[now]]--;
if (cnt[mn[now]] < 0) {
ok = 0;
break;
}
now /= mn[now];
}
}
cout << (ok ? "DA\n" : "NE\n");
}
return 0;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |