結果

問題 No.1514 Squared Matching
ユーザー KazunKazun
提出日時 2021-05-21 22:56:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 562 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 70,848 KB
実行使用メモリ 589,352 KB
最終ジャッジ日時 2024-10-10 09:40:59
合計ジャッジ時間 16,099 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 MLE -
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 15 ms
12,192 KB
testcase_07 AC 153 ms
115,092 KB
testcase_08 MLE -
testcase_09 AC 710 ms
496,872 KB
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 159 ms
120,460 KB
testcase_23 AC 329 ms
237,656 KB
testcase_24 AC 504 ms
354,792 KB
testcase_25 AC 672 ms
471,928 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;
        }
    }
    
    vector<int> V(N+1,0);
    for (int i=1; i<=N; i++) V[i]=V[i-1]+S[i];
    
    long long X=0;
    for (int i=1; i<=N; i++) X+=V[N/U[i]];
    
    cout << X << endl;
    
}
0