結果

問題 No.1664 Unstable f(n)
ユーザー 箱星箱星
提出日時 2021-09-03 21:45:47
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 328 ms / 2,000 ms
コード長 1,411 bytes
コンパイル時間 15,101 ms
コンパイル使用メモリ 454,684 KB
実行使用メモリ 58,684 KB
最終ジャッジ日時 2024-12-15 11:51:01
合計ジャッジ時間 29,575 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
58,528 KB
testcase_01 AC 300 ms
58,392 KB
testcase_02 AC 301 ms
58,568 KB
testcase_03 AC 304 ms
58,448 KB
testcase_04 AC 305 ms
58,396 KB
testcase_05 AC 313 ms
58,452 KB
testcase_06 AC 307 ms
58,428 KB
testcase_07 AC 303 ms
58,360 KB
testcase_08 AC 326 ms
58,436 KB
testcase_09 AC 301 ms
58,496 KB
testcase_10 AC 328 ms
58,556 KB
testcase_11 AC 301 ms
58,524 KB
testcase_12 AC 297 ms
58,528 KB
testcase_13 AC 298 ms
58,448 KB
testcase_14 AC 300 ms
58,456 KB
testcase_15 AC 300 ms
58,600 KB
testcase_16 AC 298 ms
58,460 KB
testcase_17 AC 300 ms
58,532 KB
testcase_18 AC 298 ms
58,480 KB
testcase_19 AC 299 ms
58,564 KB
testcase_20 AC 301 ms
58,448 KB
testcase_21 AC 312 ms
58,428 KB
testcase_22 AC 299 ms
58,400 KB
testcase_23 AC 300 ms
58,684 KB
testcase_24 AC 301 ms
58,448 KB
testcase_25 AC 302 ms
58,440 KB
testcase_26 AC 318 ms
58,468 KB
testcase_27 AC 298 ms
58,536 KB
testcase_28 AC 297 ms
58,436 KB
testcase_29 AC 300 ms
58,432 KB
testcase_30 AC 297 ms
58,524 KB
testcase_31 AC 297 ms
58,456 KB
testcase_32 AC 298 ms
58,376 KB
testcase_33 AC 302 ms
58,452 KB
testcase_34 AC 295 ms
58,536 KB
testcase_35 AC 297 ms
58,488 KB
testcase_36 AC 302 ms
58,516 KB
testcase_37 AC 300 ms
58,424 KB
testcase_38 AC 291 ms
58,532 KB
testcase_39 AC 300 ms
58,484 KB
testcase_40 AC 296 ms
58,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

fun PrintWriter.solve() {
    val n = nextLong()
    var min = n
    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