結果

問題 No.2078 魔抜けなパープル
ユーザー Andrey GalyshAndrey Galysh
提出日時 2022-09-25 21:46:20
言語 Java
(openjdk 23)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 833 bytes
コンパイル時間 2,647 ms
コンパイル使用メモリ 78,476 KB
実行使用メモリ 41,624 KB
最終ジャッジ日時 2024-12-22 14:32:48
合計ジャッジ時間 4,980 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.*;

public class Main {
    static Scanner scan;
    public static void test(int t) {
        int res = 0;
        int x = scan.nextInt(); //clumsines
        int a = scan.nextInt(); //monster hp
        long mmp = -1;
        for (int n = 1; n < a + 1; n++) {
            int mS = a / n;
            int nMS = a % n; // nMS * (mS + 1) + (n - nMS) * mS = a
            // calc mp
            long mp = ((long)n - nMS) * ((long)mS * mS + x) + (long)nMS * ((long)(mS+1)*(mS+1) + x);
            if ((mmp == -1) || (mmp > mp)) {
                mmp = mp;
            }
        }
        System.out.println(mmp);
    }
    public static void main(String []args) {
        scan = new Scanner(System.in);
        int t = scan.nextInt();
        IntStream.range(0,t).forEach(Main::test);
    }
}
0