結果
問題 | No.1514 Squared Matching |
ユーザー | tkmst201 |
提出日時 | 2021-07-04 10:47:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
MLE
|
実行時間 | - |
コード長 | 1,348 bytes |
コンパイル時間 | 2,080 ms |
コンパイル使用メモリ | 204,064 KB |
実行使用メモリ | 784,652 KB |
最終ジャッジ日時 | 2024-07-01 00:19:36 |
合計ジャッジ時間 | 56,557 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,812 KB |
testcase_01 | MLE | - |
testcase_02 | AC | 2 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,944 KB |
testcase_06 | AC | 34 ms
15,220 KB |
testcase_07 | AC | 500 ms
152,404 KB |
testcase_08 | MLE | - |
testcase_09 | MLE | - |
testcase_10 | MLE | - |
testcase_11 | MLE | - |
testcase_12 | MLE | - |
testcase_13 | MLE | - |
testcase_14 | MLE | - |
testcase_15 | MLE | - |
testcase_16 | MLE | - |
testcase_17 | MLE | - |
testcase_18 | MLE | - |
testcase_19 | MLE | - |
testcase_20 | MLE | - |
testcase_21 | MLE | - |
testcase_22 | AC | 521 ms
159,452 KB |
testcase_23 | AC | 1,139 ms
315,716 KB |
testcase_24 | AC | 1,772 ms
471,948 KB |
testcase_25 | MLE | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define FOR(i,a,b) for(int i=(a);i<(b);++i) #define REP(i,n) FOR(i,0,n) #define ALL(v) begin(v),end(v) template<typename A, typename B> inline bool chmax(A & a, const B & b) { if (a < b) { a = b; return true; } return false; } template<typename A, typename B> inline bool chmin(A & a, const B & b) { if (a > b) { a = b; return true; } return false; } using ll = long long; using pii = pair<int, int>; constexpr ll INF = 1ll<<30; constexpr ll longINF = 1ll<<60; constexpr ll MOD = 998244353; constexpr bool debug = false; //---------------------------------// std::vector<int> sieve_smallest_prime_factor(int n) { assert(n >= 0); std::vector<int> res(n + 1); std::iota(begin(res), end(res), 0); for (int i = 2; i * i <= n; ++i) { if (res[i] < i) continue; for (int j = i * i; j <= n; j += i) { if (res[j] == j) res[j] = i; } } return res; } int main() { int N; cin >> N; auto spf = sieve_smallest_prime_factor(N); vector<int> cnt(N + 1); FOR(i, 1, N + 1) { if (i * i > N) break; ++cnt[i * i]; } REP(i, N) cnt[i + 1] += cnt[i]; vector<ll> pv(N + 1, 1); ll ans = 0; FOR(i, 1, N + 1) { const int d = spf[i]; if (pv[i / d] % d == 0) pv[i] = pv[i / d] / d; else pv[i] = pv[i / d] * d; if (pv[i] > N) continue; ans += cnt[N / pv[i]]; } cout << ans << endl; }