結果

問題 No.1514 Squared Matching
ユーザー ytftytft
提出日時 2021-08-13 18:15:45
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 552 ms / 4,000 ms
コード長 497 bytes
コンパイル時間 1,453 ms
コンパイル使用メモリ 169,128 KB
実行使用メモリ 198,528 KB
最終ジャッジ日時 2024-10-03 10:08:06
合計ジャッジ時間 11,333 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 552 ms
198,528 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 3 ms
6,816 KB
testcase_06 AC 10 ms
6,820 KB
testcase_07 AC 91 ms
40,432 KB
testcase_08 AC 502 ms
191,372 KB
testcase_09 AC 448 ms
167,720 KB
testcase_10 AC 482 ms
181,632 KB
testcase_11 AC 501 ms
188,888 KB
testcase_12 AC 514 ms
194,152 KB
testcase_13 AC 520 ms
196,736 KB
testcase_14 AC 525 ms
197,564 KB
testcase_15 AC 528 ms
198,144 KB
testcase_16 AC 524 ms
198,528 KB
testcase_17 AC 528 ms
198,460 KB
testcase_18 AC 533 ms
198,400 KB
testcase_19 AC 526 ms
198,500 KB
testcase_20 AC 527 ms
198,400 KB
testcase_21 AC 529 ms
198,400 KB
testcase_22 AC 96 ms
42,240 KB
testcase_23 AC 206 ms
81,408 KB
testcase_24 AC 316 ms
120,320 KB
testcase_25 AC 428 ms
159,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;


int main(){
    int N;
    cin>>N;
    vector<int> squirrel(N+1,0);
    for(int i=1;i<=N;i++){
        if(squirrel[i]==0){
            int pointer=i;
            int j=1;
            while(pointer*j*j<=N){
                squirrel[pointer*j*j]=i;
                j++;
            }
        }
    }
    int ans=0;
    for(int i=1;i<=N;i++){
        int j=N/squirrel[i];
        int k=(int)sqrt((double)j);
        ans+=k;
    }
    cout<<ans<<endl;
}
0