結果

問題 No.915 Plus Or Multiple Operation
ユーザー rutilicusrutilicus
提出日時 2020-11-01 11:50:11
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 900 bytes
コンパイル時間 14,230 ms
コンパイル使用メモリ 437,736 KB
実行使用メモリ 52,192 KB
最終ジャッジ日時 2024-04-24 19:01:40
合計ジャッジ時間 17,403 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 282 ms
51,844 KB
testcase_01 AC 274 ms
52,080 KB
testcase_02 AC 287 ms
52,116 KB
testcase_03 AC 285 ms
52,192 KB
testcase_04 AC 278 ms
52,064 KB
testcase_05 AC 284 ms
51,768 KB
testcase_06 AC 278 ms
52,000 KB
testcase_07 AC 276 ms
51,800 KB
testcase_08 AC 277 ms
51,988 KB
testcase_09 AC 275 ms
51,812 KB
testcase_10 AC 283 ms
52,184 KB
testcase_11 AC 288 ms
51,868 KB
testcase_12 AC 281 ms
52,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:12:21: warning: 'appendln(Int): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
            builder.appendln(-1)
                    ^
Main.kt:27:21: warning: 'appendln(Long): kotlin.text.StringBuilder /* = java.lang.StringBuilder */' is deprecated. Use appendLine instead. Note that the new method always appends the line feed character '\n' regardless of the system line separator.
            builder.appendln(ansCandidates.minOrNull()!! * b)
                    ^

ソースコード

diff #

fun main() {
    val builder = StringBuilder()

    val q = readInputLine().toInt()

    // 有志解説を読んでもよくわからない……

    repeat(q) {
        val (a, b, c) = readInputLine().split(" ").map { it.toLong() }

        if (c == 1L) {
            builder.appendln(-1)
        } else {
            var tmp = a
            var cnt = 0L
            val ansCandidates = mutableSetOf<Long>()
            while (tmp != 0L) {
                if (tmp % c == 0L) {
                    tmp /= c
                } else {
                    ansCandidates.add(cnt + (tmp + c - 2L) / (c - 1L))
                    tmp = tmp / c * c
                }
                cnt++
            }
            ansCandidates.add(cnt)
            builder.appendln(ansCandidates.minOrNull()!! * b)
        }
    }

    print(builder.toString())
}

fun readInputLine(): String {
    return readLine()!!
}
0