# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
480277 | Jarif_Rahman | Vepar (COCI21_vepar) | C++17 | 263 ms | 9600 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
const int lim = 1e7+1;
vector<bool> prm(lim, 1);
vector<int> pp;
vector<ll> cnt;
void solve(){
int a, b, c, d;
cin >> a >> b >> c >> d;
a--, c--;
for(int i = 0; i < pp.size(); i++){
ll ss = pp[i];
while(ss <= b){
ll x = b/ss, y = a/ss;
cnt[i] += x-y;
ss*=pp[i];
}
}
for(int i = 0; i < pp.size(); i++){
ll ss = pp[i];
while(ss <= d){
ll x = d/ss, y = c/ss;
cnt[i] -= x-y;
ss*=pp[i];
}
}
bool bl = 1;
for(int i = 0; i < pp.size(); i++){
if(cnt[i] > 0) bl = 0;
cnt[i] = 0;
}
cout << (bl? "DA":"NE") << "\n";
}
int main(){
ios_base::sync_with_stdio(0);
cin.tie(0);
for(int i = 2; i*i < lim; i++) if(prm[i]) for(int j = i*i; j < lim; j+=i) prm[j] = 0;
for(int i = 2; i < lim; i++) if(prm[i]) pp.pb(i);
cnt.assign(pp.size(), 0);
int T; cin >> T; while(T--) solve();
}
컴파일 시 표준 에러 (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... |