結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | rutilicus |
提出日時 | 2020-11-01 11:50:49 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 333 ms / 2,000 ms |
コード長 | 894 bytes |
コンパイル時間 | 12,260 ms |
コンパイル使用メモリ | 436,668 KB |
実行使用メモリ | 57,156 KB |
最終ジャッジ日時 | 2024-11-07 03:52:15 |
合計ジャッジ時間 | 17,718 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 321 ms
57,152 KB |
testcase_01 | AC | 320 ms
56,964 KB |
testcase_02 | AC | 324 ms
56,920 KB |
testcase_03 | AC | 327 ms
56,916 KB |
testcase_04 | AC | 327 ms
57,156 KB |
testcase_05 | AC | 327 ms
57,128 KB |
testcase_06 | AC | 328 ms
57,008 KB |
testcase_07 | AC | 320 ms
56,984 KB |
testcase_08 | AC | 320 ms
57,088 KB |
testcase_09 | AC | 317 ms
56,944 KB |
testcase_10 | AC | 330 ms
57,096 KB |
testcase_11 | AC | 332 ms
57,112 KB |
testcase_12 | AC | 333 ms
57,004 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.min()!! * b) ^ Main.kt:27:49: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Long builder.appendln(ansCandidates.min()!! * b) ^
ソースコード
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.min()!! * b) } } print(builder.toString()) } fun readInputLine(): String { return readLine()!! }