結果
問題 | No.2078 魔抜けなパープル |
ユーザー | ntuda |
提出日時 | 2022-09-29 21:00:41 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 503 bytes |
コンパイル時間 | 314 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 112,816 KB |
最終ジャッジ日時 | 2024-06-02 02:07:34 |
合計ジャッジ時間 | 2,404 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 272 ms
93,920 KB |
testcase_02 | WA | - |
testcase_03 | AC | 233 ms
90,844 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 378 ms
112,816 KB |
testcase_07 | WA | - |
ソースコード
import math T = int(input()) for t in range(T): X , A = map(int,input().split()) dp = [0] + [10**20] * A XB = math.ceil(X**0.5)+2 XA = min(max(1,A-2),int(X**0.5)-2) for i in range(A): flag = 0 for j in range(XA,XB): if i + j > A: continue tmp = dp[i] + j * j + X if dp[i + j] > tmp: dp[i + j] = tmp flag = 1 #if flag == 0: # break #print(dp) print(dp[-1])