結果
問題 | No.915 Plus Or Multiple Operation |
ユーザー | rutilicus |
提出日時 | 2020-11-01 11:50:11 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 335 ms / 2,000 ms |
コード長 | 900 bytes |
コンパイル時間 | 13,579 ms |
コンパイル使用メモリ | 438,548 KB |
実行使用メモリ | 56,988 KB |
最終ジャッジ日時 | 2024-11-07 03:51:33 |
合計ジャッジ時間 | 18,762 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 319 ms
56,852 KB |
testcase_01 | AC | 315 ms
56,924 KB |
testcase_02 | AC | 318 ms
56,820 KB |
testcase_03 | AC | 320 ms
56,788 KB |
testcase_04 | AC | 321 ms
56,832 KB |
testcase_05 | AC | 321 ms
56,836 KB |
testcase_06 | AC | 323 ms
56,604 KB |
testcase_07 | AC | 314 ms
56,904 KB |
testcase_08 | AC | 315 ms
56,988 KB |
testcase_09 | AC | 313 ms
56,964 KB |
testcase_10 | AC | 323 ms
56,920 KB |
testcase_11 | AC | 335 ms
56,784 KB |
testcase_12 | AC | 320 ms
56,912 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) ^
ソースコード
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()!! }