結果

問題 No.1514 Squared Matching
ユーザー keijakkeijak
提出日時 2021-05-22 01:31:31
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,170 ms / 4,000 ms
コード長 989 bytes
コンパイル時間 2,000 ms
コンパイル使用メモリ 201,660 KB
実行使用メモリ 247,688 KB
最終ジャッジ日時 2024-10-10 10:36:34
合計ジャッジ時間 22,451 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
53,852 KB
testcase_01 AC 1,167 ms
247,560 KB
testcase_02 AC 14 ms
52,832 KB
testcase_03 AC 14 ms
52,828 KB
testcase_04 AC 14 ms
52,444 KB
testcase_05 AC 15 ms
53,856 KB
testcase_06 AC 30 ms
57,224 KB
testcase_07 AC 235 ms
90,380 KB
testcase_08 AC 1,123 ms
241,288 KB
testcase_09 AC 983 ms
217,988 KB
testcase_10 AC 1,060 ms
231,304 KB
testcase_11 AC 1,115 ms
238,344 KB
testcase_12 AC 1,137 ms
244,360 KB
testcase_13 AC 1,156 ms
247,176 KB
testcase_14 AC 1,166 ms
247,560 KB
testcase_15 AC 1,163 ms
247,564 KB
testcase_16 AC 1,159 ms
247,688 KB
testcase_17 AC 1,164 ms
247,564 KB
testcase_18 AC 1,163 ms
247,560 KB
testcase_19 AC 1,161 ms
247,688 KB
testcase_20 AC 1,165 ms
247,564 KB
testcase_21 AC 1,170 ms
247,560 KB
testcase_22 AC 244 ms
92,036 KB
testcase_23 AC 477 ms
132,488 KB
testcase_24 AC 700 ms
169,864 KB
testcase_25 AC 927 ms
209,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define REP_(i, a_, b_, a, b, ...) \
  for (int i = (a), END_##i = (b); i < END_##i; ++i)
#define REP(i, ...) REP_(i, __VA_ARGS__, __VA_ARGS__, 0, __VA_ARGS__)
#define ALL(x) std::begin(x), std::end(x)
using i64 = long long;

using namespace std;

char p[50000005];
int b[50000005];

auto solve() {
  i64 n;
  cin >> n;
  fill(ALL(p), 1);
  //   vector<char> p(n + 1, true);
  //   vector<int> b(n + 1);
  p[0] = p[1] = false;
  REP(i, n + 1) b[i] = i;
  for (int i = 4; i <= n; i += 2) {
    p[i] = false;
    while ((b[i] & 3) == 0) b[i] >>= 2;
  }
  for (i64 i = 3; i * i <= n; i += 2) {
    if (not p[i]) continue;
    i64 ii = i * i;
    for (int j = ii; j <= n; j += ii) {
      p[j] = false;
      while ((b[j] % ii) == 0) b[j] /= ii;
    }
  }
  i64 ans = 0;
  for (i64 x = 1; x <= n; ++x) {
    i64 r = std::sqrt(n / b[x]);
    ans += r;
  }
  return ans;
}

int main() {
  ios_base::sync_with_stdio(false), cin.tie(nullptr);
  cout << solve() << "\n";
}
0