結果
問題 | No.2078 魔抜けなパープル |
ユーザー | Navier_Boltzmann |
提出日時 | 2022-09-25 22:50:44 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 454 bytes |
コンパイル時間 | 334 ms |
コンパイル使用メモリ | 82,540 KB |
実行使用メモリ | 90,580 KB |
最終ジャッジ日時 | 2024-06-01 23:45:22 |
合計ジャッジ時間 | 4,767 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 505 ms
83,072 KB |
testcase_01 | TLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
ソースコード
from collections import * from itertools import * from functools import * from heapq import * import sys,math input = sys.stdin.readline def answer(): X,A = map(int,input().split()) L = math.ceil(math.sqrt(X)) INF = (1<<30) dp = [INF]*(A+1) dp[0] = 0 for i in range(1,A+1): dp[i] = min(k**2 + X + dp[i-k] for k in range(1,min(i,L)+1)) print(dp[A]) for _ in range(int(input())): answer()