結果
問題 | No.1567 Integer Coefficient Equation |
ユーザー | umezo |
提出日時 | 2021-06-26 14:21:50 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,473 bytes |
コンパイル時間 | 2,202 ms |
コンパイル使用メモリ | 203,004 KB |
実行使用メモリ | 8,064 KB |
最終ジャッジ日時 | 2024-06-25 10:32:41 |
合計ジャッジ時間 | 8,872 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 14 ms
7,936 KB |
testcase_01 | AC | 14 ms
7,936 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
ソースコード
#define rep(i, n) for (int i = 0; i < (int)(n); i++) #define ALL(v) v.begin(), v.end() typedef long long ll; #include <bits/stdc++.h> using namespace std; template<typename T> vector<T> smallest_prime_factors(T n){ vector<T> spf(n+1); for(int i=0;i<=n;i++) spf[i]=i; for(T i=2;i*i<=n;i++){ if(spf[i]==i){ //素数だったら for(T j=i*i;j<=n;j+=i){ if(spf[j]==j) spf[j]=i; //iを持つ整数かつまだ素数が決まっていないなら } } } return spf; } //高速因数分解(クエリ<=10^5,整数<=10^6程度) template<typename T> bool factolization(T x,vector<T> &spf){ int cnt=0; while(x!=1) { x/=spf[x]; cnt++; if(cnt>=3){ break; } } if(cnt>=3) return true; return false; } int main(){ ios::sync_with_stdio(false); std::cin.tie(nullptr); constexpr int MAX=400040; auto spf=smallest_prime_factors(MAX); vector<int> A(MAX+1); for(int i=1;i<MAX;i++){ if(factolization(i,spf)==1) A[i]=1; } for(int i=1;i*i*i<MAX;i++) A[i*i*i]=0; vector<int> S(MAX+2); for(int i=1;i<MAX;i++) S[i]=A[i]+S[i-1]; int t; cin>>t; while(t--){ ll p,l,r; cin>>p>>l>>r; l-=p,r-=p; if(l>0 && r>0) cout<<S[r]-S[l-1]<<endl; else if(l<0 && r<0) cout<<S[-l]-S[-r-1]<<endl; else if(l==0 && r==0) cout<<1<<endl; else if(l==0) cout<<1+S[r]<<endl; else if(r==0) cout<<1+S[-1]<<endl; else cout<<1+S[r]+S[-l]<<endl; } return 0; }