結果

問題 No.1514 Squared Matching
ユーザー jelljell
提出日時 2021-05-21 22:43:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 189 ms / 4,000 ms
コード長 352 bytes
コンパイル時間 755 ms
コンパイル使用メモリ 69,932 KB
実行使用メモリ 9,648 KB
最終ジャッジ日時 2024-10-10 09:24:49
合計ジャッジ時間 4,766 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
9,512 KB
testcase_01 AC 188 ms
9,524 KB
testcase_02 AC 5 ms
9,564 KB
testcase_03 AC 4 ms
9,488 KB
testcase_04 AC 5 ms
9,532 KB
testcase_05 AC 5 ms
9,568 KB
testcase_06 AC 7 ms
9,432 KB
testcase_07 AC 38 ms
9,608 KB
testcase_08 AC 181 ms
9,560 KB
testcase_09 AC 158 ms
9,616 KB
testcase_10 AC 171 ms
9,648 KB
testcase_11 AC 178 ms
9,508 KB
testcase_12 AC 183 ms
9,592 KB
testcase_13 AC 186 ms
9,528 KB
testcase_14 AC 186 ms
9,552 KB
testcase_15 AC 187 ms
9,520 KB
testcase_16 AC 187 ms
9,584 KB
testcase_17 AC 187 ms
9,620 KB
testcase_18 AC 188 ms
9,640 KB
testcase_19 AC 189 ms
9,556 KB
testcase_20 AC 187 ms
9,520 KB
testcase_21 AC 187 ms
9,548 KB
testcase_22 AC 41 ms
9,520 KB
testcase_23 AC 78 ms
9,548 KB
testcase_24 AC 113 ms
9,520 KB
testcase_25 AC 150 ms
9,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bitset>
#include <iostream>

int main() {
  int n;
  std::cin >> n;
  std::bitset<50000001> used;
  long ans = 0;
  for (int i = 1; i <= n; ++i) {
    if (used[i]) continue;
    long size = 0;
    for (long j = 1; j * j * i <= n; ++j) {
      used[j * j * i] = 1;
      ++size;
    }
    ans += size * size;
  }
  std::cout << ans << "\n";
}
0