結果

問題 No.1286 Stone Skipping
ユーザー yudedakoyudedako
提出日時 2022-01-10 16:50:12
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 314 ms / 2,000 ms
コード長 730 bytes
コンパイル時間 12,415 ms
コンパイル使用メモリ 431,304 KB
実行使用メモリ 56,856 KB
最終ジャッジ日時 2024-11-14 10:56:28
合計ジャッジ時間 22,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 293 ms
56,680 KB
testcase_01 AC 297 ms
56,672 KB
testcase_02 AC 293 ms
56,796 KB
testcase_03 AC 298 ms
56,784 KB
testcase_04 AC 299 ms
56,796 KB
testcase_05 AC 299 ms
56,672 KB
testcase_06 AC 295 ms
56,692 KB
testcase_07 AC 306 ms
56,672 KB
testcase_08 AC 302 ms
56,784 KB
testcase_09 AC 301 ms
56,664 KB
testcase_10 AC 305 ms
56,852 KB
testcase_11 AC 301 ms
56,764 KB
testcase_12 AC 302 ms
56,824 KB
testcase_13 AC 296 ms
56,828 KB
testcase_14 AC 295 ms
56,784 KB
testcase_15 AC 294 ms
56,796 KB
testcase_16 AC 291 ms
56,768 KB
testcase_17 AC 284 ms
56,776 KB
testcase_18 AC 287 ms
56,828 KB
testcase_19 AC 295 ms
56,740 KB
testcase_20 AC 294 ms
56,856 KB
testcase_21 AC 297 ms
56,668 KB
testcase_22 AC 306 ms
56,824 KB
testcase_23 AC 296 ms
56,716 KB
testcase_24 AC 298 ms
56,800 KB
testcase_25 AC 302 ms
56,712 KB
testcase_26 AC 301 ms
56,756 KB
testcase_27 AC 298 ms
56,752 KB
testcase_28 AC 314 ms
56,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    val distance = readLine()!!.trim().toLong()
    var result = distance
    fun sumDistance(step: Int, d: Long): Long {
        var sum = 0L
        var dist = d
        repeat(step) {
            sum += dist
            dist /= 2
        }
        return sum
    }
    for (step in 2 .. 60) {
        var min = 0L
        var max = distance
        while (min < max) {
            val mid = (min + max) / 2
            val sum = sumDistance(step, mid)
            if (sum < distance) {
                min = mid + 1
            }else {
                max = mid
            }
        }
        if (sumDistance(step, max) == distance) {
            result = minOf(result, max)
        }
    }
    println(result)
}
0