結果

問題 No.2249 GCDistance
ユーザー GiriGiri
提出日時 2023-07-28 22:03:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 1,170 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 2,092 ms
コンパイル使用メモリ 201,672 KB
実行使用メモリ 81,664 KB
最終ジャッジ日時 2024-10-06 18:55:19
合計ジャッジ時間 17,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,071 ms
81,536 KB
testcase_01 AC 1,123 ms
81,536 KB
testcase_02 AC 1,113 ms
81,552 KB
testcase_03 AC 1,104 ms
81,436 KB
testcase_04 AC 1,084 ms
81,664 KB
testcase_05 AC 1,101 ms
81,552 KB
testcase_06 AC 1,137 ms
81,500 KB
testcase_07 AC 1,163 ms
81,536 KB
testcase_08 AC 1,111 ms
81,536 KB
testcase_09 AC 1,170 ms
81,508 KB
testcase_10 AC 1,096 ms
81,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long ll;
#define rep(i, m, n) for(ll i = m; i < n; ++i)

const ll MAXN = 10000001;
ll f[MAXN];

void Euler_Totient() {
    rep(i, 0, MAXN) f[i] = i;
        rep(i, 2, MAXN)
            if(f[i] == i)
                for(ll j = i; j <= MAXN - 1; j += i) f[j] = f[j] / i * (i - 1);
}

int main()
{
    ios::sync_with_stdio(0); cin.tie(0);

    Euler_Totient();
    rep(i, 1, MAXN) f[i] += f[i - 1];
    ll T; cin >> T;
    while(T--) {
        ll N; cin >> N;
        cout << N * (N - 1) - f[N] + 1<< "\n";
    }
    return 0;
}
0