結果
問題 | No.847 Divisors of Power |
ユーザー | soy |
提出日時 | 2019-08-07 16:42:15 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,034 bytes |
コンパイル時間 | 707 ms |
コンパイル使用メモリ | 76,024 KB |
実行使用メモリ | 10,496 KB |
最終ジャッジ日時 | 2024-10-07 03:03:59 |
合計ジャッジ時間 | 4,941 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | TLE | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
ソースコード
#include <iostream> #include <vector> using namespace std; vector<pair<long long int, int>> t; int ans = 1; long int k, n, m; int main() { void counting(int, int); void specialcount(); int count = 0; cin >> n >> k >> m; if (n == 1) { specialcount(); return 0; } if (n % 2 == 0) { for (; n % 2 == 0; n /= 2) { count++; } t.push_back(make_pair(2, k * count)); } for (int i = 3; n != 1; i += 2) { if (i > m) break; if (n % i == 0) { for (count = 0; n % i == 0; n /= i) { count++; } t.push_back(make_pair(i, k * count)); } } for (int i = 0; i < size(t); i++) { cout << t[i].first << " " << t[i].second << endl; } counting(0, 1); cout << ans; return 0; } void counting(int a, int px) { int x = px; if (a + 1 < size(t)) counting(a + 1, x); for (int i = 0; i < t[a].second; i++) { x *= t[a].first; if (x > m) { return; } else { ans++; if (a + 1 < size(t)) { counting(a + 1, x); } } } } void specialcount() { if (m == 0) cout << 0; else cout << 1; }