結果
問題 | No.297 カードの数式 |
ユーザー | rutilicus |
提出日時 | 2020-10-07 21:49:22 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 341 ms / 1,000 ms |
コード長 | 1,905 bytes |
コンパイル時間 | 16,009 ms |
コンパイル使用メモリ | 442,076 KB |
実行使用メモリ | 60,236 KB |
最終ジャッジ日時 | 2024-07-20 04:12:01 |
合計ジャッジ時間 | 26,509 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 341 ms
60,116 KB |
testcase_01 | AC | 325 ms
56,800 KB |
testcase_02 | AC | 325 ms
56,912 KB |
testcase_03 | AC | 338 ms
60,048 KB |
testcase_04 | AC | 320 ms
56,772 KB |
testcase_05 | AC | 339 ms
60,136 KB |
testcase_06 | AC | 330 ms
60,196 KB |
testcase_07 | AC | 324 ms
56,880 KB |
testcase_08 | AC | 313 ms
56,944 KB |
testcase_09 | AC | 321 ms
56,732 KB |
testcase_10 | AC | 318 ms
56,980 KB |
testcase_11 | AC | 316 ms
56,784 KB |
testcase_12 | AC | 316 ms
56,924 KB |
testcase_13 | AC | 320 ms
56,828 KB |
testcase_14 | AC | 320 ms
56,888 KB |
testcase_15 | AC | 322 ms
56,892 KB |
testcase_16 | AC | 328 ms
56,748 KB |
testcase_17 | AC | 317 ms
56,892 KB |
testcase_18 | AC | 317 ms
56,948 KB |
testcase_19 | AC | 341 ms
60,168 KB |
testcase_20 | AC | 335 ms
60,124 KB |
testcase_21 | AC | 337 ms
60,232 KB |
testcase_22 | AC | 321 ms
56,816 KB |
testcase_23 | AC | 341 ms
60,128 KB |
testcase_24 | AC | 333 ms
60,180 KB |
testcase_25 | AC | 341 ms
60,236 KB |
コンパイルメッセージ
Main.kt:75:13: warning: 'appendln(String?): 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("$max $min") ^
ソースコード
fun main() { val builder = StringBuilder() val n = readInputLine().toInt() var plusCnt = 0 var minusCnt = 0 val numCnt = IntArray(10) readInputLine().split(" ").forEach { when(it) { "+" -> plusCnt++ "-" -> minusCnt++ else -> numCnt[it.toInt()]++ } } val digitCnt = n - plusCnt - minusCnt val allTermList = mutableListOf<Long>() var maxTermTmp = 0L var maxTermLen = 0 val numCntTmp = numCnt.copyOf() for (i in 9 downTo 0) { while (numCntTmp[i] != 0) { if (maxTermLen < digitCnt - plusCnt - minusCnt) { maxTermTmp = maxTermTmp * 10L + i.toLong() maxTermLen++ if (maxTermLen == digitCnt - plusCnt - minusCnt) { allTermList.add(maxTermTmp) } } else { allTermList.add(i.toLong()) } numCntTmp[i]-- } } allTermList.sortDescending() var max = 0L for ((i, t) in allTermList.withIndex()) { if (i <= plusCnt) { max += t } else { max -= t } } var min = 0L if (minusCnt != 0) { for ((i, t) in allTermList.withIndex()) { if (i < minusCnt) { min -= t } else { min += t } } } else { val allTerm = LongArray(plusCnt + 1) var currentIndex = 0 for (i in 0..9) { while (numCnt[i] != 0) { allTerm[currentIndex] = allTerm[currentIndex] * 10L + i.toLong() currentIndex = (currentIndex + 1) % (plusCnt + 1) numCnt[i]-- } } min = allTerm.sum() } builder.appendln("$max $min") print(builder.toString()) } fun readInputLine(): String { return readLine()!! }