結果

問題 No.555 世界史のレポート
ユーザー lloyzlloyz
提出日時 2022-09-15 00:04:25
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 329 bytes
コンパイル時間 338 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 277,576 KB
最終ジャッジ日時 2024-05-09 03:40:50
合計ジャッジ時間 5,001 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
58,112 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 38 ms
52,480 KB
testcase_03 AC 81 ms
76,544 KB
testcase_04 AC 92 ms
76,480 KB
testcase_05 AC 93 ms
76,996 KB
testcase_06 AC 93 ms
76,368 KB
testcase_07 AC 108 ms
76,544 KB
testcase_08 AC 96 ms
76,356 KB
testcase_09 AC 108 ms
76,416 KB
testcase_10 TLE -
testcase_11 AC 1,974 ms
216,788 KB
testcase_12 TLE -
testcase_13 -- -
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, num, num))
    heappush(H, (cost + v, num + c_num, c_num))
0