結果
問題 | No.1532 Different Products |
ユーザー | H3PO4 |
提出日時 | 2024-09-07 14:57:25 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 681 bytes |
コンパイル時間 | 1,291 ms |
コンパイル使用メモリ | 88,228 KB |
実行使用メモリ | 87,968 KB |
最終ジャッジ日時 | 2024-09-07 14:57:38 |
合計ジャッジ時間 | 12,164 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
87,968 KB |
testcase_01 | AC | 1,689 ms
28,292 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 2 ms
6,944 KB |
testcase_04 | AC | 2 ms
6,940 KB |
testcase_05 | AC | 2 ms
6,944 KB |
testcase_06 | AC | 2 ms
6,944 KB |
testcase_07 | AC | 3 ms
6,940 KB |
testcase_08 | AC | 5 ms
6,940 KB |
testcase_09 | AC | 120 ms
12,348 KB |
testcase_10 | AC | 1,987 ms
42,212 KB |
testcase_11 | AC | 1,108 ms
30,056 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
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 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
testcase_62 | -- | - |
testcase_63 | -- | - |
ソースコード
#include <iostream> #include <unordered_map> int main() { long N, K; std::cin >> N >> K; std::unordered_map<long, long> dp; dp[1] = 1; long ans = 0; for (int i = 1; i <= N; i++) { std::unordered_map<long, long> new_dp = dp; for (const auto& p : dp) { const auto k = p.first; const auto v = p.second; if (i * k * (i + 1) < K) { new_dp[i * k] += v; } else if (i * k <= K) { ans += v; } } dp = new_dp; } long s = 0; for (auto p : dp) { s += p.second; } std::cout << ans + s - 1 << std::endl; return 0; }