結果

問題 No.1514 Squared Matching
ユーザー 👑 KazunKazun
提出日時 2021-05-22 04:14:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 776 ms / 4,000 ms
コード長 532 bytes
コンパイル時間 669 ms
コンパイル使用メモリ 71,104 KB
実行使用メモリ 394,016 KB
最終ジャッジ日時 2024-10-10 10:37:39
合計ジャッジ時間 14,280 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 776 ms
394,016 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 1 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 13 ms
9,168 KB
testcase_07 AC 131 ms
77,852 KB
testcase_08 AC 726 ms
379,540 KB
testcase_09 AC 635 ms
332,316 KB
testcase_10 AC 700 ms
359,740 KB
testcase_11 AC 724 ms
374,620 KB
testcase_12 AC 741 ms
384,936 KB
testcase_13 AC 750 ms
390,180 KB
testcase_14 AC 754 ms
392,116 KB
testcase_15 AC 758 ms
393,052 KB
testcase_16 AC 761 ms
393,576 KB
testcase_17 AC 765 ms
393,884 KB
testcase_18 AC 767 ms
393,860 KB
testcase_19 AC 766 ms
393,832 KB
testcase_20 AC 760 ms
393,864 KB
testcase_21 AC 761 ms
393,864 KB
testcase_22 AC 149 ms
81,336 KB
testcase_23 AC 302 ms
159,492 KB
testcase_24 AC 454 ms
237,596 KB
testcase_25 AC 607 ms
315,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<vector>

using namespace std;

int main(){
    int N; cin >> N;
    vector<int> S(N+1,0); S[1]=1;
    vector<int> U(N+1);
    
    for (int i=0; i<=N; i++) U[i]=i;
    
    int j,k;
    for (int i=2; i*i<=N; i++){
        j=i*i;
        k=i*i;
        S[j]=1;
        while (j<=N){
            while (U[j]%k==0) U[j]/=k;
            j+=k;
        }
    }
    
    for (int i=1; i<=N; i++) S[i]+=S[i-1];
    
    long long X=0;
    for (int i=1; i<=N; i++) X+=S[N/U[i]];
    
    cout << X << endl;
    
}
0