結果
問題 | No.2016 Countdown Divisors |
ユーザー | atjh16 |
提出日時 | 2022-07-23 07:35:06 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 638 bytes |
コンパイル時間 | 2,004 ms |
コンパイル使用メモリ | 203,116 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-07-04 17:33:03 |
合計ジャッジ時間 | 5,972 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; int t; long long n; bool f[100001]; vector<long long> p = { 2 }; int main() { cin >> t; for (long long i = 3; i <= 100000; i += 2) { if (!f[i]) { p.push_back(i); for (long long j = i * i; j <= 100000; j += i) { f[j] = 1; } } } for (int i = 0; i < t; i++) { cin >> n; while (n > 2) { long long u = n, w = 1; for (long long j : p) { if (j * j > u) break; if (u % j == 0) { int v = 1; while (u % j == 0) { u /= j; v++; } w *= v; } } if (u > 1) w *= 2; n -= w; } cout << n << endl; } }