結果

問題 No.1514 Squared Matching
ユーザー poyo_starpoyo_star
提出日時 2021-05-21 23:04:51
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,300 ms / 4,000 ms
コード長 410 bytes
コンパイル時間 2,108 ms
コンパイル使用メモリ 200,308 KB
実行使用メモリ 198,912 KB
最終ジャッジ日時 2024-10-10 09:55:55
合計ジャッジ時間 23,492 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1,179 ms
198,784 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 17 ms
6,528 KB
testcase_07 AC 203 ms
40,704 KB
testcase_08 AC 1,128 ms
191,616 KB
testcase_09 AC 987 ms
167,936 KB
testcase_10 AC 1,072 ms
181,672 KB
testcase_11 AC 1,114 ms
189,184 KB
testcase_12 AC 1,150 ms
194,304 KB
testcase_13 AC 1,166 ms
196,864 KB
testcase_14 AC 1,168 ms
197,760 KB
testcase_15 AC 1,169 ms
198,400 KB
testcase_16 AC 1,171 ms
198,656 KB
testcase_17 AC 1,300 ms
198,580 KB
testcase_18 AC 1,231 ms
198,656 KB
testcase_19 AC 1,178 ms
198,912 KB
testcase_20 AC 1,178 ms
198,760 KB
testcase_21 AC 1,173 ms
198,656 KB
testcase_22 AC 214 ms
42,368 KB
testcase_23 AC 438 ms
81,536 KB
testcase_24 AC 680 ms
120,688 KB
testcase_25 AC 929 ms
159,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main(){
    long n;
    cin >> n;
    int a[n + 1];
    for(int i = 0; i <= n; i++) a[i] = i;
    for(int i = 2; i <= sqrt(n); i++){
        for(int j = i * i; j <= n; j += i * i){
            while(a[j] % (i * i) == 0) a[j] /= i * i;
        }
    }
    long k = 0;
    for(int i = 1; i <= n; i++){
        k += sqrt(n / a[i]);
    }
    cout << k << endl;
}
0