結果

問題 No.2078 魔抜けなパープル
ユーザー flygonflygon
提出日時 2022-09-25 22:21:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 482 ms / 2,000 ms
コード長 411 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 82,468 KB
実行使用メモリ 84,432 KB
最終ジャッジ日時 2024-06-01 23:37:42
合計ジャッジ時間 2,680 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
64,084 KB
testcase_01 AC 336 ms
82,436 KB
testcase_02 AC 258 ms
79,052 KB
testcase_03 AC 299 ms
81,616 KB
testcase_04 AC 238 ms
79,460 KB
testcase_05 AC 235 ms
78,840 KB
testcase_06 AC 482 ms
84,432 KB
testcase_07 AC 125 ms
79,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappop
t = int(input())
for  i in range(t):
  x,a = map(int,input().split())
  INF = 10**18
  dp = [INF]*(a+1)
  dp[0] = 0
  ks = []
  border = int(x**0.5)+1
  for i in range(border-10, border+10):
    if i <= 0: continue
    ks.append([i,i*i+x])
  for i in range(1,a+1):
    dp[i] = i*i+x
    for j,jc in ks:
      if j > i: break
      dp[i] = min(dp[i], dp[i-j]+ jc)
  print(dp[-1])


    
0