結果

問題 No.2249 GCDistance
ユーザー V_MelvilleV_Melville
提出日時 2023-03-21 19:09:26
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 567 ms / 5,000 ms
コード長 952 bytes
コンパイル時間 2,909 ms
コンパイル使用メモリ 249,612 KB
実行使用メモリ 162,384 KB
最終ジャッジ日時 2023-10-18 18:32:01
合計ジャッジ時間 9,933 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 192 ms
162,384 KB
testcase_01 AC 555 ms
162,384 KB
testcase_02 AC 553 ms
162,380 KB
testcase_03 AC 567 ms
162,380 KB
testcase_04 AC 329 ms
162,380 KB
testcase_05 AC 561 ms
162,380 KB
testcase_06 AC 558 ms
162,380 KB
testcase_07 AC 556 ms
162,380 KB
testcase_08 AC 202 ms
162,380 KB
testcase_09 AC 563 ms
162,380 KB
testcase_10 AC 503 ms
162,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using namespace std;
using ll = long long;

// totient table
vector<int> ps, pf, phi;
void sieve(int mx) {
    pf.resize(mx+1);
    phi.resize(mx+1);
    phi[1] = 1;
    rep(i, mx+1) pf[i] = i;
    for (int i = 2; i <= mx; ++i) {
        if (pf[i] == i) {
            ps.push_back(i);
            phi[i] = i-1;
        }
        rep(j, ps.size()) {
            int x = ps[j]*i;
            if (x > mx) break;
            pf[x] = ps[j];
            if (i%ps[j] == 0) {
                phi[x] = phi[i]*ps[j];
                break;
            }
            phi[x] = phi[i]*(ps[j]-1);
        }
    }
}

int main() {
    sieve(1e7);
    vector<ll> s(1e7+1);
    rep(i, 1e7) s[i+1] = s[i]+phi[i+1];
    
    int t;
    cin >> t;
    
    while (t--) {
        int n;
        cin >> n;
        ll ans = (ll)n*(n-1) - s[n] + 1;
        cout << ans << '\n';
    }
    
    return 0;
}
0