結果

問題 No.555 世界史のレポート
ユーザー lloyzlloyz
提出日時 2022-09-15 00:06:40
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 337 bytes
コンパイル時間 536 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 330,524 KB
最終ジャッジ日時 2024-12-15 13:02:56
合計ジャッジ時間 21,023 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,792 KB
testcase_01 AC 41 ms
330,524 KB
testcase_02 AC 42 ms
57,856 KB
testcase_03 AC 80 ms
320,344 KB
testcase_04 AC 93 ms
83,556 KB
testcase_05 AC 98 ms
76,416 KB
testcase_06 AC 99 ms
76,416 KB
testcase_07 AC 95 ms
76,596 KB
testcase_08 AC 96 ms
76,544 KB
testcase_09 AC 107 ms
76,800 KB
testcase_10 TLE -
testcase_11 AC 1,529 ms
185,284 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 411 ms
100,052 KB
testcase_16 AC 1,461 ms
180,616 KB
testcase_17 AC 487 ms
106,508 KB
testcase_18 AC 1,672 ms
200,488 KB
testcase_19 AC 1,847 ms
224,380 KB
権限があれば一括ダウンロードができます

ソースコード

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