結果

問題 No.1514 Squared Matching
ユーザー KudeKude
提出日時 2021-05-21 23:14:21
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 1,238 bytes
コンパイル時間 4,245 ms
コンパイル使用メモリ 261,208 KB
実行使用メモリ 600,948 KB
最終ジャッジ日時 2024-10-10 10:09:42
合計ジャッジ時間 54,313 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 MLE -
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 23 ms
12,444 KB
testcase_07 AC 453 ms
117,584 KB
testcase_08 MLE -
testcase_09 AC 2,425 ms
506,944 KB
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 474 ms
123,120 KB
testcase_23 AC 1,049 ms
242,540 KB
testcase_24 AC 1,606 ms
362,028 KB
testcase_25 AC 2,309 ms
481,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#include<atcoder/all>
using namespace std;
using namespace atcoder;
#define rep(i,n)for (int i = 0; i < int(n); ++i)
#define rrep(i,n)for (int i = int(n)-1; i >= 0; --i)
#define all(x) (x).begin(), (x).end()
#define rall(x) (x).rbegin(), (x).rend()
template<class T> void chmax(T& a, const T& b) {a = max(a, b);}
template<class T> void chmin(T& a, const T& b) {a = min(a, b);}
using ll = long long;
using P = pair<int,int>;
using VI = vector<int>;
using VVI = vector<VI>;
using VL = vector<ll>;
using VVL = vector<VL>;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    VI d(n + 1);
    d[1] = 1;
    VI lpf(n + 1);
    VI ps;
    ps.reserve(n / 10);
    for(int p = 2; p <= n; p++) {
        if (lpf[p] == 0) {
            d[p] = p;
            ps.push_back(p);
        }
        int v = d[p];
        for(int q: ps) {
            ll t = (ll)p * q;
            if (t > n || q > p) break;
            lpf[t] = q;
            if (v % q == 0) d[t] = v / q;
            else d[t] = v * q;
        }
    }
    VI hist(n + 1);
    for(int i = 1; i <= n; i++) hist[d[i]]++;
    ll ans = 0;
    for(int i = 1; i <= n; i++) ans += (ll) hist[i] * hist[i];
    cout << ans << '\n';
}
0