結果

問題 No.2249 GCDistance
ユーザー flygonflygon
提出日時 2023-03-18 15:12:35
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,591 ms / 5,000 ms
コード長 923 bytes
コンパイル時間 2,937 ms
コンパイル使用メモリ 248,236 KB
実行使用メモリ 134,496 KB
最終ジャッジ日時 2024-09-18 13:18:55
合計ジャッジ時間 21,784 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,200 ms
134,368 KB
testcase_01 AC 1,512 ms
134,368 KB
testcase_02 AC 1,524 ms
134,260 KB
testcase_03 AC 1,512 ms
134,368 KB
testcase_04 AC 1,305 ms
134,496 KB
testcase_05 AC 1,511 ms
134,364 KB
testcase_06 AC 1,513 ms
134,368 KB
testcase_07 AC 1,591 ms
134,496 KB
testcase_08 AC 1,195 ms
134,244 KB
testcase_09 AC 1,530 ms
134,368 KB
testcase_10 AC 1,449 ms
134,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define fast_io ios::sync_with_stdio(false); cin.tie(nullptr);
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math")

#define rep(i,n) for(int i = 0; i < n; i++)

const long long MOD = 1000000007;

vector<long long> calc_totient(long long M){
    vector<long long> phi;
    rep(i,M+1){
        phi.push_back(i);
    }
    for (int i = 2; i <= M; i++){
        if (phi[i] == i){
            for (int j = i; j <= M; j+=i){
                phi[j] = phi[j] / i * (i-1);
            }
        }
    }
    return phi;
}

int main() {
    fast_io
    long long M = 10000000;
    vector<long long> phi = calc_totient(M);
    for(int i = 1; i <= M; i++){
        phi[i] += phi[i-1];
    }
    int t;
    cin >> t;
    rep(i, t){
        long long n;
        cin >> n;
        long long ans = 0;
        ans = -phi[n] + n*(n-1) + 1;
        cout << ans << endl;
    }
}
0