結果

問題 No.2846 Birthday Cake
ユーザー dp_ijkdp_ijk
提出日時 2024-08-23 22:46:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 656 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 90,280 KB
最終ジャッジ日時 2024-08-23 22:46:49
合計ジャッジ時間 6,551 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,064 KB
testcase_01 AC 45 ms
62,528 KB
testcase_02 AC 234 ms
88,148 KB
testcase_03 AC 35 ms
53,108 KB
testcase_04 AC 34 ms
53,188 KB
testcase_05 AC 241 ms
88,892 KB
testcase_06 WA -
testcase_07 AC 254 ms
90,036 KB
testcase_08 WA -
testcase_09 AC 262 ms
89,932 KB
testcase_10 AC 276 ms
90,132 KB
testcase_11 AC 304 ms
90,044 KB
testcase_12 AC 199 ms
85,980 KB
testcase_13 AC 213 ms
86,100 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 279 ms
90,136 KB
testcase_19 AC 39 ms
54,612 KB
testcase_20 AC 50 ms
65,464 KB
testcase_21 AC 34 ms
53,088 KB
testcase_22 AC 75 ms
76,696 KB
testcase_23 AC 59 ms
70,812 KB
testcase_24 AC 226 ms
86,152 KB
testcase_25 AC 39 ms
54,240 KB
testcase_26 AC 57 ms
71,844 KB
testcase_27 AC 72 ms
76,616 KB
testcase_28 AC 33 ms
53,080 KB
testcase_29 WA -
testcase_30 AC 35 ms
53,296 KB
testcase_31 AC 57 ms
67,872 KB
testcase_32 AC 124 ms
80,596 KB
testcase_33 AC 216 ms
86,276 KB
testcase_34 AC 83 ms
77,048 KB
testcase_35 WA -
testcase_36 AC 212 ms
85,924 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 res in {13, 17, 19, 23}:
      res += 1
   return res
K, N = map(int, input().split())
ans = solve(K, N)
print(ans)
0