結果

問題 No.2416 vs Slime
ユーザー 👑 KA37RIKA37RI
提出日時 2023-08-12 14:02:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 240 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,632 KB
最終ジャッジ日時 2024-11-19 17:07:23
合計ジャッジ時間 26,110 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
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 WA -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 RE -
testcase_20 RE -
testcase_21 WA -
testcase_22 TLE -
testcase_23 RE -
testcase_24 WA -
testcase_25 RE -
testcase_26 TLE -
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 TLE -
testcase_37 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

H, A = [int(x) for x in input().split()]
slimes = {H: 1}
ans = 0
nxt = {}
while slimes:
  for s in slimes:
    at = s // A
    if at > 0:
      if at not in nxt: nxt[at] = 0
      nxt[at] += slimes[s] * 2
    ans += slimes[s]
  slimes = nxt
0