結果

問題 No.1514 Squared Matching
ユーザー ForestedForested
提出日時 2021-05-22 11:26:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 397 ms / 4,000 ms
コード長 680 bytes
コンパイル時間 980 ms
コンパイル使用メモリ 84,596 KB
実行使用メモリ 9,380 KB
最終ジャッジ日時 2024-10-10 10:52:53
合計ジャッジ時間 8,315 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 397 ms
9,348 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 8 ms
6,816 KB
testcase_07 AC 78 ms
6,816 KB
testcase_08 AC 384 ms
9,140 KB
testcase_09 AC 333 ms
8,292 KB
testcase_10 AC 362 ms
8,772 KB
testcase_11 AC 378 ms
9,044 KB
testcase_12 AC 387 ms
9,164 KB
testcase_13 AC 393 ms
9,340 KB
testcase_14 AC 396 ms
9,260 KB
testcase_15 AC 395 ms
9,276 KB
testcase_16 AC 396 ms
9,248 KB
testcase_17 AC 396 ms
9,252 KB
testcase_18 AC 397 ms
9,316 KB
testcase_19 AC 396 ms
9,296 KB
testcase_20 AC 396 ms
9,380 KB
testcase_21 AC 396 ms
9,300 KB
testcase_22 AC 81 ms
6,816 KB
testcase_23 AC 161 ms
6,816 KB
testcase_24 AC 238 ms
6,992 KB
testcase_25 AC 318 ms
8,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>

std::size_t solve(std::size_t n) {
    std::vector<bool> is_square_free(n + 1, true);
    for (std::size_t i = 2; i * i <= n; ++i) {
        if (!is_square_free[i * i])
            continue;
        for (std::size_t j = i * i; j <= n; j += i * i)
            is_square_free[j] = false;
    }
    
    std::size_t ans = 0;
    for (std::size_t k = 1; k <= n; ++k) {
        if (is_square_free[k]) {
            std::size_t tmp = std::floor(std::sqrt((double) n / k));
            ans += tmp * tmp;
        }
    }
    return ans;
}

int main() {
    std::size_t n;
    std::cin >> n;
    std::cout << solve(n) << std::endl;
}
0