結果
問題 | No.2016 Countdown Divisors |
ユーザー | tnakao0123 |
提出日時 | 2022-07-23 16:04:27 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,418 bytes |
コンパイル時間 | 553 ms |
コンパイル使用メモリ | 64,128 KB |
実行使用メモリ | 62,108 KB |
最終ジャッジ日時 | 2024-07-05 05:15:59 |
合計ジャッジ時間 | 4,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | -- | - |
ソースコード
/* -*- coding: utf-8 -*- * * 2016.cc: No.2016 Countdown Divisors - yukicoder */ #include<cstdio> #include<vector> #include<map> #include<algorithm> using namespace std; /* constant */ const int MAX_P = 32000; /* typedef */ typedef vector<int> vi; typedef map<int,int> mii; /* global variables */ bool primes[MAX_P + 1]; mii cache; /* subroutines */ int gen_primes(int maxp, vi &pnums) { fill(primes, primes + maxp + 1, true); primes[0] = primes[1] = false; int p; for (p = 2; p * p <= maxp; p++) if (primes[p]) { pnums.push_back(p); for (int q = p * p; q <= maxp; q += p) primes[q] = false; } for (; p <= maxp; p++) if (primes[p]) pnums.push_back(p); return (int)pnums.size(); } int divnum(int n, vi &pnums) { mii::iterator mit = cache.find(n); if (mit != cache.end()) return mit->second; int d = 1, m = n; int pn = pnums.size(); for (int i = 0; i < pn; i++) { int pi = pnums[i]; if (pi * pi > n) { if (n > 1) d *= 2; break; } if (n % pi == 0) { int fi = 0; while (n % pi == 0) n /= pi, fi++; d *= fi + 1; } } return (cache[m] = d); } /* subroutines */ /* main */ int main() { vi pnums; gen_primes(MAX_P, pnums); int tn; scanf("%d", &tn); while (tn--) { int n; scanf("%d", &n); int m = n; while (m > 2) m -= divnum(m, pnums); printf("%d\n", m); } return 0; }