結果

問題 No.555 世界史のレポート
ユーザー lloyzlloyz
提出日時 2022-09-15 00:06:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 234,036 KB
最終ジャッジ日時 2024-05-09 03:43:38
合計ジャッジ時間 5,940 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,240 KB
testcase_01 AC 41 ms
52,864 KB
testcase_02 AC 42 ms
52,352 KB
testcase_03 AC 76 ms
72,832 KB
testcase_04 AC 94 ms
76,900 KB
testcase_05 AC 91 ms
76,380 KB
testcase_06 AC 90 ms
76,416 KB
testcase_07 AC 90 ms
76,544 KB
testcase_08 AC 89 ms
76,288 KB
testcase_09 AC 98 ms
76,928 KB
testcase_10 TLE -
testcase_11 AC 1,430 ms
185,372 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n = int(input())
c, v = map(int, input().split())

H = [(c, 1, 1)]
heapify(H)
while H:
    cost, num, c_num = heappop(H)
    if num >= n:
        print(cost)
        break
    if c_num != num:
        heappush(H, (cost + c + v, num * 2, num))
    heappush(H, (cost + v, num + c_num, c_num))
0