結果
問題 | No.150 "良問"(良問とは言っていない |
ユーザー | バカらっく |
提出日時 | 2019-10-21 01:52:48 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 406 ms / 5,000 ms |
コード長 | 935 bytes |
コンパイル時間 | 11,446 ms |
コンパイル使用メモリ | 449,280 KB |
実行使用メモリ | 62,356 KB |
最終ジャッジ日時 | 2024-07-02 17:41:07 |
合計ジャッジ時間 | 20,294 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 349 ms
60,228 KB |
testcase_01 | AC | 294 ms
57,136 KB |
testcase_02 | AC | 282 ms
57,120 KB |
testcase_03 | AC | 293 ms
57,252 KB |
testcase_04 | AC | 291 ms
57,156 KB |
testcase_05 | AC | 302 ms
57,100 KB |
testcase_06 | AC | 406 ms
62,356 KB |
testcase_07 | AC | 327 ms
57,256 KB |
testcase_08 | AC | 290 ms
57,096 KB |
testcase_09 | AC | 298 ms
57,076 KB |
testcase_10 | AC | 363 ms
60,340 KB |
testcase_11 | AC | 360 ms
60,208 KB |
testcase_12 | AC | 340 ms
60,152 KB |
testcase_13 | AC | 364 ms
60,240 KB |
testcase_14 | AC | 384 ms
60,108 KB |
testcase_15 | AC | 377 ms
60,124 KB |
testcase_16 | AC | 314 ms
57,300 KB |
testcase_17 | AC | 334 ms
59,524 KB |
testcase_18 | AC | 381 ms
60,300 KB |
testcase_19 | AC | 399 ms
60,396 KB |
testcase_20 | AC | 373 ms
60,228 KB |
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'arr' is never used fun main(arr:Array<String>) { ^ Main.kt:20:73: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Int return listGood.indices.map { listGood[it] + listProbrem[it] }.min()!! ^
ソースコード
fun main(arr:Array<String>) { val inputCount = readLine()!!.toInt() (1..inputCount).forEach { println(getAns(readLine()!!)) } } fun getAns(input:String):Int { val listGood = mutableListOf<Int>() val listProbrem = mutableListOf<Int>() for(i in (0..input.length - 11)) { listGood.add(convCount("good", input.substring((i until i + 4)))) listProbrem.add(convCount("problem", input.substring(i + 4 until i + 11))) } for(i in (1..listGood.lastIndex)) { listGood[i] = Math.min(listGood[i], listGood[i - 1]) } for(i in (0..listProbrem.lastIndex - 1).reversed()) { listProbrem[i] = Math.min(listProbrem[i], listProbrem[i + 1]) } return listGood.indices.map { listGood[it] + listProbrem[it] }.min()!! } fun convCount(original:String, require:String):Int { val ans = original.withIndex().map { if(it.value == require[it.index]) 0 else 1 }.sum() return ans }