結果
問題 | No.2249 GCDistance |
ユーザー | cologne |
提出日時 | 2023-03-21 14:06:59 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,167 ms / 5,000 ms |
コード長 | 469 bytes |
コンパイル時間 | 2,614 ms |
コンパイル使用メモリ | 242,952 KB |
実行使用メモリ | 81,676 KB |
最終ジャッジ日時 | 2024-09-18 14:21:50 |
合計ジャッジ時間 | 16,599 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,025 ms
81,676 KB |
testcase_01 | AC | 1,056 ms
81,632 KB |
testcase_02 | AC | 1,167 ms
81,536 KB |
testcase_03 | AC | 1,068 ms
81,664 KB |
testcase_04 | AC | 1,002 ms
81,536 KB |
testcase_05 | AC | 1,005 ms
81,640 KB |
testcase_06 | AC | 997 ms
81,440 KB |
testcase_07 | AC | 1,018 ms
81,464 KB |
testcase_08 | AC | 1,011 ms
81,664 KB |
testcase_09 | AC | 1,021 ms
81,440 KB |
testcase_10 | AC | 1,007 ms
81,652 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const int MAX = 10'000'000; long long phi[MAX + 1]; int main() { ios::sync_with_stdio(false); cin.tie(0); iota(phi, phi + MAX + 1, 0); phi[1] = 0; for (int i = 2; i <= MAX; ++i) { if (phi[i] == i) for (int j = 1; i * j <= MAX; ++j) phi[i * j] -= phi[i * j] / i; phi[i] = 2 * (i - 1) - phi[i]; phi[i] += phi[i - 1]; } int T; cin >> T; while (T--) { int N; cin >> N; cout << phi[N] << '\n'; } }