結果
問題 | No.2249 GCDistance |
ユーザー | hiro71687k |
提出日時 | 2023-03-18 16:04:19 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 726 bytes |
コンパイル時間 | 4,288 ms |
コンパイル使用メモリ | 262,668 KB |
実行使用メモリ | 88,228 KB |
最終ジャッジ日時 | 2024-09-18 13:23:52 |
合計ジャッジ時間 | 17,104 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | TLE | - |
testcase_01 | -- | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; using ll=int; using ld=long double; ld pie=3.14159265359; ll inf=1001000000; ll mod=1000000007; int64_t euler_phi(int64_t n) { int64_t ret = n; for(int64_t i = 2; i * i <= n; i++) { if(n % i == 0) { ret -= ret / i; while(n % i == 0) n /= i; } } if(n > 1) ret -= ret / n; return ret; } int main(){ ll t; cin >> t; vector<long long>ans(10000005,0); ans[2]=1; for (ll i = 3; i < ans.size(); i++) { ll x=euler_phi(i); ans[i]=ans[i-1]+x+(i-1-x)*2; } for (ll o = 0; o < t; o++) { ll n; cin >> n; cout << ans[n] << endl; } }