結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,216 KB
testcase_01 AC 37 ms
317,076 KB
testcase_02 AC 38 ms
59,424 KB
testcase_03 AC 76 ms
330,748 KB
testcase_04 AC 87 ms
81,920 KB
testcase_05 AC 91 ms
76,864 KB
testcase_06 AC 93 ms
76,508 KB
testcase_07 AC 98 ms
76,160 KB
testcase_08 AC 97 ms
76,432 KB
testcase_09 AC 99 ms
76,416 KB
testcase_10 TLE -
testcase_11 AC 1,925 ms
217,772 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 559 ms
107,420 KB
testcase_16 AC 1,797 ms
207,936 KB
testcase_17 AC 620 ms
116,384 KB
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

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