結果

問題 No.1862 Copy and Paste
ユーザー mkawa2mkawa2
提出日時 2024-06-13 14:19:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,324 bytes
コンパイル時間 395 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 347,968 KB
最終ジャッジ日時 2024-06-13 14:20:35
合計ジャッジ時間 39,226 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
59,008 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 43 ms
53,760 KB
testcase_03 AC 61 ms
65,920 KB
testcase_04 AC 42 ms
53,504 KB
testcase_05 AC 42 ms
53,888 KB
testcase_06 AC 43 ms
53,760 KB
testcase_07 AC 43 ms
54,272 KB
testcase_08 AC 41 ms
54,272 KB
testcase_09 TLE -
testcase_10 WA -
testcase_11 TLE -
testcase_12 WA -
testcase_13 TLE -
testcase_14 WA -
testcase_15 WA -
testcase_16 TLE -
testcase_17 WA -
testcase_18 WA -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 WA -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 42 ms
53,376 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 -- -
testcase_30 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000006)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 62)

# md = 10**9+7
md = 998244353

from collections import defaultdict

a,b=LI()
n=II()
dp={1:0}
st=[(n,1)]
x2p=defaultdict(list)
while st:
    # print(st,dp,x2p)
    x,f=st.pop()
    if x in dp:continue
    if f:
        st.append((x,0))
        l = 2
        while 1:
            p = (x+l-1)//l
            if p < 1: break
            x2p[x].append(p)
            if p not in dp:st.append((p,1))
            if p == 1: break
            l = (x+p-2)//(p-1)
    else:
        cur=inf
        for p in x2p[x]:
            cur=min(cur,dp[p]+a+((x+p-1)//p-1)*b)
        dp[x]=cur

print(dp[n])
0