結果
問題 | No.2249 GCDistance |
ユーザー | ransewhale |
提出日時 | 2023-03-18 01:22:03 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,430 ms / 5,000 ms |
コード長 | 843 bytes |
コンパイル時間 | 721 ms |
コンパイル使用メモリ | 77,116 KB |
実行使用メモリ | 169,820 KB |
最終ジャッジ日時 | 2024-09-18 12:49:46 |
合計ジャッジ時間 | 17,663 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,042 ms
169,696 KB |
testcase_01 | AC | 1,367 ms
169,692 KB |
testcase_02 | AC | 1,386 ms
169,696 KB |
testcase_03 | AC | 1,398 ms
169,700 KB |
testcase_04 | AC | 1,128 ms
169,692 KB |
testcase_05 | AC | 1,373 ms
169,696 KB |
testcase_06 | AC | 1,388 ms
169,820 KB |
testcase_07 | AC | 1,416 ms
169,572 KB |
testcase_08 | AC | 1,042 ms
169,568 KB |
testcase_09 | AC | 1,430 ms
169,696 KB |
testcase_10 | AC | 1,322 ms
169,572 KB |
ソースコード
#include <stdio.h> #include <iostream> #include <vector> #include <queue> #include <stack> #include <algorithm> #pragma GCC optimize("O2") using ll = long long int; const int INF = (1<<30); const ll INFLL = (1ll<<60); const ll MOD = (ll)(1e9+7); #define l_ength size void mul_mod(ll& a, ll b){ a *= b; a %= MOD; } void add_mod(ll& a, ll b){ a = (a<MOD)?a:(a-MOD); b = (b<MOD)?b:(b-MOD); a += b; a = (a<MOD)?a:(a-MOD); } bool f[10010010]; ll memo[10010010],ans[10010010]; int main(void){ int t; ll i,j,n=10000000; for(i=2; i<=n; ++i){ memo[i] = i; } for(i=2; i<=n; ++i){ if(!f[i]){ for(j=i; j<=n; j+=i){ memo[j] /= i; memo[j] *= (i-1); f[j] = true; } } ans[i] = ans[i-1] + (i-memo[i]-1)*2+memo[i]; } std::cin >> t; while(t--){ std::cin >> n; std::cout << ans[n] << std::endl; } return 0; }