結果
問題 | No.1514 Squared Matching |
ユーザー | umezo |
提出日時 | 2021-05-22 00:45:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 776 bytes |
コンパイル時間 | 2,295 ms |
コンパイル使用メモリ | 203,144 KB |
実行使用メモリ | 589,332 KB |
最終ジャッジ日時 | 2024-10-10 10:32:08 |
合計ジャッジ時間 | 34,389 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 940 ms
198,500 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 946 ms
198,676 KB |
testcase_03 | AC | 937 ms
198,504 KB |
testcase_04 | AC | 940 ms
198,560 KB |
testcase_05 | AC | 933 ms
198,576 KB |
testcase_06 | AC | 950 ms
204,708 KB |
testcase_07 | AC | 1,013 ms
273,180 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | AC | 1,013 ms
276,720 KB |
testcase_23 | AC | 1,080 ms
354,852 KB |
testcase_24 | AC | 1,160 ms
433,108 KB |
testcase_25 | AC | 1,641 ms
511,188 KB |
ソースコード
#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; int B[50000010]; int C[50000010]; int main(){ int n; cin>>n; int MAX=50000010; vector<int> prime(MAX,1); prime[0]=0,prime[1]=0; for(int i=2;i*i<=MAX;i++){ if(!prime[i]) continue; for(int j=2*i;j<=MAX;j+=i) prime[j]=0; } vector<int> A; for(int i=1;i*i<=n;i++){ if(prime[i]) A.push_back(i); } rep(i,n+1) B[i]=i; for(auto p:A){ int q=p*p; int r=q; while(1){ for(int i=q;i<=n;i+=q) B[i]/=r; if(q>n/r) break; q*=r; } } for(int i=1;i<=n;i++) C[B[i]]++; int ans=0; for(int i=1;i<=n;i++) ans+=C[i]*C[i]; cout<<ans<<endl; return 0; }