結果

問題 No.1664 Unstable f(n)
ユーザー 箱星箱星
提出日時 2021-09-03 21:37:07
言語 Kotlin
(1.9.23)
結果
WA  
実行時間 -
コード長 1,424 bytes
コンパイル時間 14,430 ms
コンパイル使用メモリ 454,292 KB
実行使用メモリ 58,700 KB
最終ジャッジ日時 2024-12-15 10:54:03
合計ジャッジ時間 28,720 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 302 ms
53,588 KB
testcase_01 AC 297 ms
53,644 KB
testcase_02 AC 301 ms
52,992 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 299 ms
54,732 KB
testcase_07 AC 299 ms
52,832 KB
testcase_08 AC 299 ms
53,044 KB
testcase_09 AC 299 ms
52,984 KB
testcase_10 AC 294 ms
53,036 KB
testcase_11 AC 301 ms
53,036 KB
testcase_12 AC 299 ms
52,960 KB
testcase_13 AC 304 ms
52,916 KB
testcase_14 AC 303 ms
52,732 KB
testcase_15 AC 299 ms
52,924 KB
testcase_16 AC 305 ms
53,144 KB
testcase_17 AC 302 ms
52,996 KB
testcase_18 AC 305 ms
52,904 KB
testcase_19 AC 306 ms
53,032 KB
testcase_20 AC 310 ms
53,016 KB
testcase_21 AC 300 ms
53,100 KB
testcase_22 AC 301 ms
52,920 KB
testcase_23 AC 295 ms
52,852 KB
testcase_24 AC 297 ms
52,920 KB
testcase_25 AC 302 ms
53,068 KB
testcase_26 AC 292 ms
53,040 KB
testcase_27 AC 300 ms
52,920 KB
testcase_28 AC 294 ms
53,004 KB
testcase_29 AC 292 ms
52,908 KB
testcase_30 AC 294 ms
52,808 KB
testcase_31 AC 297 ms
52,876 KB
testcase_32 AC 300 ms
52,920 KB
testcase_33 AC 302 ms
53,020 KB
testcase_34 AC 304 ms
52,792 KB
testcase_35 AC 298 ms
52,804 KB
testcase_36 AC 298 ms
53,008 KB
testcase_37 AC 299 ms
53,076 KB
testcase_38 AC 302 ms
53,012 KB
testcase_39 AC 309 ms
53,004 KB
testcase_40 AC 306 ms
52,856 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 1..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