結果
問題 | No.2249 GCDistance |
ユーザー | potoooooooo |
提出日時 | 2023-03-21 01:49:18 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,210 ms / 5,000 ms |
コード長 | 711 bytes |
コンパイル時間 | 2,162 ms |
コンパイル使用メモリ | 200,380 KB |
実行使用メモリ | 159,712 KB |
最終ジャッジ日時 | 2024-09-18 14:13:53 |
合計ジャッジ時間 | 17,449 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1,136 ms
159,580 KB |
testcase_01 | AC | 1,120 ms
159,712 KB |
testcase_02 | AC | 1,210 ms
159,584 KB |
testcase_03 | AC | 1,166 ms
159,584 KB |
testcase_04 | AC | 1,104 ms
159,584 KB |
testcase_05 | AC | 1,119 ms
159,712 KB |
testcase_06 | AC | 1,126 ms
159,712 KB |
testcase_07 | AC | 1,149 ms
159,584 KB |
testcase_08 | AC | 1,110 ms
159,712 KB |
testcase_09 | AC | 1,149 ms
159,708 KB |
testcase_10 | AC | 1,093 ms
159,712 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; constexpr int max_val = 1e7; long long tot[max_val + 1]; long long ans[max_val + 1]; void solve() { for (int i = 1; i <= max_val; i++) tot[i] = i; for (int i = 2; i <= max_val; i++) { if (tot[i] == i) { tot[i]--; for (int j = i + i; j <= max_val; j += i) { tot[j] = tot[j] / i * (i - 1); } } } for (int i = 1; i < max_val; i++) { ans[i + 1] = ans[i] + i + i - tot[i + 1]; } } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int T; cin >> T; solve(); while (T--) { int n; cin >> n; cout << ans[n] << "\n"; } return 0; }