結果

問題 No.2078 魔抜けなパープル
ユーザー 箱星箱星
提出日時 2022-09-25 21:07:49
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 284 ms / 2,000 ms
コード長 1,186 bytes
コンパイル時間 11,879 ms
コンパイル使用メモリ 434,076 KB
実行使用メモリ 58,752 KB
最終ジャッジ日時 2024-06-01 23:17:18
合計ジャッジ時間 15,141 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
58,596 KB
testcase_01 AC 275 ms
58,712 KB
testcase_02 AC 273 ms
58,676 KB
testcase_03 AC 273 ms
58,624 KB
testcase_04 AC 274 ms
58,752 KB
testcase_05 AC 265 ms
58,548 KB
testcase_06 AC 284 ms
58,652 KB
testcase_07 AC 273 ms
58,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintWriter
import java.util.*
import kotlin.math.*

fun PrintWriter.solve() {
    val numCases = nextInt()
    case@ for (_i in 0 until numCases) {
        val x = nextInt()
        val a = nextInt()
        var ans = Long.MAX_VALUE
        for (m in 1..a) {
            val n1 = a % m
            val n2 = m - n1
            val v = m.toLong() * x + n1.toLong() * (a / m + 1) * (a / m + 1) + n2.toLong() * (a / m) * (a / m)
            ans = minOf(ans, v)
        }
        println(ans)
    }
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", abs(1L.shl(26)))
        .apply { setUncaughtExceptionHandler { _, e -> e.printStackTrace(); kotlin.system.exitProcess(1) } }
        .apply { start() }.join()
}

// region Scanner
private var st = StringTokenizer("")
private val br = System.`in`.bufferedReader()

fun next(): String {
    while (!st.hasMoreTokens()) st = StringTokenizer(br.readLine())
    return st.nextToken()
}

fun nextInt() = next().toInt()
fun nextLong() = next().toLong()
fun nextLine() = br.readLine()
fun nextDouble() = next().toDouble()
// endregion
0