結果

問題 No.2846 Birthday Cake
ユーザー dp_ijkdp_ijk
提出日時 2024-08-23 22:47:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 654 bytes
コンパイル時間 436 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 90,532 KB
最終ジャッジ日時 2024-08-23 22:47:34
合計ジャッジ時間 7,119 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,520 KB
testcase_01 AC 50 ms
61,424 KB
testcase_02 AC 256 ms
87,904 KB
testcase_03 AC 39 ms
53,076 KB
testcase_04 AC 42 ms
52,620 KB
testcase_05 AC 268 ms
88,824 KB
testcase_06 AC 287 ms
89,816 KB
testcase_07 AC 297 ms
89,728 KB
testcase_08 AC 298 ms
89,688 KB
testcase_09 AC 302 ms
89,716 KB
testcase_10 AC 305 ms
90,140 KB
testcase_11 AC 308 ms
90,532 KB
testcase_12 AC 220 ms
86,112 KB
testcase_13 AC 238 ms
85,684 KB
testcase_14 AC 58 ms
66,404 KB
testcase_15 AC 79 ms
77,044 KB
testcase_16 AC 92 ms
76,708 KB
testcase_17 AC 247 ms
86,392 KB
testcase_18 AC 314 ms
90,084 KB
testcase_19 AC 43 ms
54,560 KB
testcase_20 AC 54 ms
65,604 KB
testcase_21 AC 38 ms
53,076 KB
testcase_22 AC 73 ms
76,656 KB
testcase_23 AC 67 ms
71,084 KB
testcase_24 AC 248 ms
86,416 KB
testcase_25 AC 42 ms
55,392 KB
testcase_26 AC 63 ms
72,072 KB
testcase_27 AC 84 ms
76,476 KB
testcase_28 AC 41 ms
53,192 KB
testcase_29 AC 85 ms
77,016 KB
testcase_30 AC 38 ms
52,152 KB
testcase_31 AC 57 ms
67,252 KB
testcase_32 AC 134 ms
80,328 KB
testcase_33 AC 243 ms
86,332 KB
testcase_34 AC 126 ms
76,776 KB
testcase_35 AC 94 ms
77,124 KB
testcase_36 AC 239 ms
86,148 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve(K, N):
   if K == 1:
      return 1
   from collections import defaultdict
   R = tuple(set(range(1, N+1)) - {13, 17, 19, 23})
   from math import gcd
   def lcm(a, b):
      return a*b//gcd(a, b)
   L = 1
   for x in R:
      L = lcm(L, x)
   F = tuple(L//x for x in R)
   dp = defaultdict(int)
   dp[0] = 1
   for _ in range(K):
      ndp = defaultdict(int)
      for k, cnt in dp.items():
         for f in F:
            nkey = k+f
            if nkey <= L:
               ndp[nkey] += cnt
      dp = ndp
   res = dp[L]
   if K in {13, 17, 19, 23}:
      res += 1
   return res
K, N = map(int, input().split())
ans = solve(K, N)
print(ans)
0