이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define F first
#define S second
map<int, int> ab, cd;
inline void factorize(int i, bool b) {
for(int j=2; j<=i; j++) {
while(i%j==0) {
if(b) ab[j]++;
else cd[j]++;
i/=j;
}
}
}
inline void solve() {
int a,b,c,d;
cin >> a >> b >> c >> d;
for(int i=a; i<=b; i++) factorize(i, true);
for(int i=c; i<=d; i++) factorize(i, false);
for(auto x:ab) {
if(cd[x.F]<x.S) {
cout << "NE\n";
ab.clear();
cd.clear();
return;
}
}
ab.clear();
cd.clear();
cout << "DA\n";
}
int main() {
int t;
cin >> t;
while(t--) solve();
}
# | 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... |