結果

問題 No.2078 魔抜けなパープル
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-09-25 23:20:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 62,772 KB
最終ジャッジ日時 2024-06-01 23:49:58
合計ジャッジ時間 1,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
60,292 KB
testcase_01 AC 69 ms
61,296 KB
testcase_02 AC 60 ms
61,764 KB
testcase_03 AC 65 ms
61,220 KB
testcase_04 AC 59 ms
61,484 KB
testcase_05 AC 59 ms
61,948 KB
testcase_06 AC 88 ms
62,772 KB
testcase_07 AC 60 ms
60,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    x,a = map(int,input().split())
    inf = 10**20

    ans = inf
    for i in range(1,a+1):
        num = (a+i-1)//i
        over = num*i-a

        count = (num**2+x)*(i-over)
        if over:
            count += ((num-1)**2+x)*over

        ans = min(ans,count)
    print(ans)
    

t = int(input())
for _ in range(t):
    solve()
0