結果

問題 No.1664 Unstable f(n)
ユーザー 箱星箱星
提出日時 2021-09-03 21:40:01
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,424 bytes
コンパイル時間 13,627 ms
コンパイル使用メモリ 453,196 KB
実行使用メモリ 58,668 KB
最終ジャッジ日時 2024-12-15 11:14:44
合計ジャッジ時間 26,095 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 262 ms
58,476 KB
testcase_01 AC 265 ms
58,444 KB
testcase_02 AC 278 ms
58,556 KB
testcase_03 AC 273 ms
58,528 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 266 ms
58,564 KB
testcase_07 AC 273 ms
58,456 KB
testcase_08 AC 266 ms
58,640 KB
testcase_09 AC 271 ms
58,584 KB
testcase_10 AC 271 ms
58,440 KB
testcase_11 AC 266 ms
58,428 KB
testcase_12 AC 279 ms
58,540 KB
testcase_13 AC 266 ms
58,432 KB
testcase_14 AC 267 ms
58,432 KB
testcase_15 AC 271 ms
58,440 KB
testcase_16 AC 297 ms
58,496 KB
testcase_17 AC 277 ms
58,532 KB
testcase_18 AC 271 ms
58,560 KB
testcase_19 AC 267 ms
58,436 KB
testcase_20 AC 269 ms
58,528 KB
testcase_21 AC 270 ms
58,588 KB
testcase_22 AC 265 ms
58,524 KB
testcase_23 AC 268 ms
58,544 KB
testcase_24 AC 265 ms
58,424 KB
testcase_25 AC 265 ms
58,540 KB
testcase_26 AC 259 ms
58,400 KB
testcase_27 AC 270 ms
58,532 KB
testcase_28 AC 271 ms
58,420 KB
testcase_29 AC 267 ms
58,384 KB
testcase_30 AC 280 ms
58,448 KB
testcase_31 AC 273 ms
58,420 KB
testcase_32 AC 261 ms
58,476 KB
testcase_33 AC 257 ms
58,640 KB
testcase_34 AC 259 ms
58,548 KB
testcase_35 AC 271 ms
58,344 KB
testcase_36 AC 263 ms
58,508 KB
testcase_37 AC 277 ms
58,552 KB
testcase_38 AC 263 ms
58,448 KB
testcase_39 AC 265 ms
58,616 KB
testcase_40 AC 264 ms
58,612 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextLong()
    var min = Long.MAX_VALUE
    for (j in 0..60) {
        var l = 1L
        var r = n + 1
        outer@while (r - l > 1) {
            val mid = (l + r) / 2
            var pow = 1L
            for (_i in 0 until j) {
                if (pow > n / mid) {
                    r = mid
                    continue@outer
                }
                pow *= mid
            }
            if (pow > n) {
                r = mid
            } else {
                l = mid
            }
        }
        val i = l
        val k = n - LongArray(j) { i }.fold(1L, Long::times)
        min = min(min, i + j + k)
    }
    println(min)
}

fun main() {
    Thread(null, {
        val writer = PrintWriter(System.out, false)
        writer.solve()
        writer.flush()
    }, "solve", 1.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