結果

問題 No.2078 魔抜けなパープル
ユーザー tamatotamato
提出日時 2022-09-25 21:04:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 96 ms / 2,000 ms
コード長 419 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 61,100 KB
最終ジャッジ日時 2024-06-01 23:15:26
合計ジャッジ時間 1,206 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
58,988 KB
testcase_01 AC 75 ms
61,100 KB
testcase_02 AC 64 ms
59,776 KB
testcase_03 AC 74 ms
59,548 KB
testcase_04 AC 64 ms
60,420 KB
testcase_05 AC 64 ms
60,388 KB
testcase_06 AC 96 ms
60,592 KB
testcase_07 AC 59 ms
59,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 998244353


def main():
    import sys
    input = sys.stdin.readline

    for _ in range(int(input())):
        x, a = map(int, input().split())
        
        ans = float("inf")
        for i in range(1, a+1):
            b = a // i
            n1 = a % i
            n0 = i - n1
            ans = min(ans, (x + b ** 2) * n0 + (x + (b+1) ** 2) * n1)
        print(ans)


if __name__ == '__main__':
    main()
0