結果

問題 No.1514 Squared Matching
ユーザー zhanghonghe2zhanghonghe2
提出日時 2021-06-26 16:33:09
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 717 ms / 4,000 ms
コード長 1,001 bytes
コンパイル時間 626 ms
コンパイル使用メモリ 68,304 KB
実行使用メモリ 394,296 KB
最終ジャッジ日時 2024-06-25 09:08:42
合計ジャッジ時間 13,303 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 706 ms
394,164 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 3 ms
6,948 KB
testcase_06 AC 12 ms
10,804 KB
testcase_07 AC 135 ms
79,796 KB
testcase_08 AC 683 ms
380,212 KB
testcase_09 AC 604 ms
334,000 KB
testcase_10 AC 647 ms
362,040 KB
testcase_11 AC 676 ms
377,908 KB
testcase_12 AC 694 ms
386,996 KB
testcase_13 AC 707 ms
391,600 KB
testcase_14 AC 709 ms
393,268 KB
testcase_15 AC 709 ms
393,780 KB
testcase_16 AC 712 ms
394,036 KB
testcase_17 AC 717 ms
394,168 KB
testcase_18 AC 713 ms
394,292 KB
testcase_19 AC 713 ms
394,296 KB
testcase_20 AC 714 ms
394,296 KB
testcase_21 AC 713 ms
394,168 KB
testcase_22 AC 138 ms
83,640 KB
testcase_23 AC 282 ms
161,588 KB
testcase_24 AC 422 ms
239,896 KB
testcase_25 AC 567 ms
317,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <cstring>
#include <algorithm>
#define ll long long
using namespace std;

const int maxn=5e7+10;
const int maxn2=5e4+10;
int Hash[maxn];
int sum[maxn];
int prime[maxn2];
int vis[maxn2];
int cnt=0;

void init(){
    for(int i=2;i<maxn2;i++){
        if(!vis[i]) {
            for (int j = i; j < maxn2; j += i) {
                vis[j]=true;
            }
            prime[++cnt]=i;
        }
    }
}

int main(){
    ios::sync_with_stdio(false);
    int N;cin>>N;
    init();

    for(int i=1;i<=N;i++){
        Hash[i]=i;
    }


    for(int idx=1;prime[idx]*prime[idx]<=N;idx++){
        for(int i=1;i*prime[idx]*prime[idx]<=N;i++){
            int now=i*prime[idx]*prime[idx];
            int k=prime[idx]*prime[idx];
            while(Hash[now]%k==0){
                Hash[now]/=k;
            }
        }
    }

    int ans=0;
    for(int i=1;i<=N;i++){
        ans+=sum[Hash[i]]*2;
        ans+=1;
        sum[Hash[i]]+=1;
    }
    cout<<ans<<endl;
    return 0;
}
0