結果

問題 No.1514 Squared Matching
ユーザー Suu0313Suu0313
提出日時 2021-06-17 06:35:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 661 ms / 4,000 ms
コード長 665 bytes
コンパイル時間 2,144 ms
コンパイル使用メモリ 206,128 KB
実行使用メモリ 393,904 KB
最終ジャッジ日時 2024-06-10 15:19:50
合計ジャッジ時間 13,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 651 ms
393,904 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 2 ms
6,944 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 9 ms
9,204 KB
testcase_07 AC 103 ms
77,880 KB
testcase_08 AC 622 ms
379,716 KB
testcase_09 AC 557 ms
332,328 KB
testcase_10 AC 587 ms
359,804 KB
testcase_11 AC 617 ms
374,668 KB
testcase_12 AC 625 ms
384,924 KB
testcase_13 AC 644 ms
390,120 KB
testcase_14 AC 629 ms
392,312 KB
testcase_15 AC 651 ms
393,224 KB
testcase_16 AC 661 ms
393,520 KB
testcase_17 AC 658 ms
393,740 KB
testcase_18 AC 661 ms
393,860 KB
testcase_19 AC 648 ms
393,796 KB
testcase_20 AC 645 ms
393,856 KB
testcase_21 AC 656 ms
393,856 KB
testcase_22 AC 91 ms
81,448 KB
testcase_23 AC 231 ms
159,440 KB
testcase_24 AC 375 ms
237,636 KB
testcase_25 AC 502 ms
315,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


int main() {
  int n; cin >> n;

  vector<int> sn(n + 1);
  for(int i = 1, s = 1; i <= n; ++i){
    while(s*s <= i) ++s;
    sn[i] = s - 1;
  }

  int m = sn[n];

  vector<bool> ps(m + 1, true);
  ps[0] = ps[1] = false;

  vector<int> odd(n + 1);
  iota(odd.begin(), odd.end(), 0);

  int ans = 0;

  for(int i = 2; i*i <= n; ++i){
    if(!ps[i]) continue;
    for(int j = i*i; (int64_t)j*j <= n; j += i) ps[j] = false;

    for(int64_t p = i*i; p <= n; p *= i*i){
      for(int q = p; q <= n; q += p) odd[q] /= i * i;
    }
  }

  for(int a = 1; a <= n; ++a){
    ans += sn[n / odd[a]];
  }

  cout << ans << endl;
}
0