結果
問題 | No.342 一番ワロタww |
ユーザー | Pump0129 |
提出日時 | 2018-04-08 13:45:11 |
言語 | Kotlin (1.9.23) |
結果 |
AC
|
実行時間 | 310 ms / 5,000 ms |
コード長 | 1,225 bytes |
コンパイル時間 | 12,517 ms |
コンパイル使用メモリ | 441,764 KB |
実行使用メモリ | 51,376 KB |
最終ジャッジ日時 | 2024-11-20 15:46:16 |
合計ジャッジ時間 | 18,717 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 290 ms
49,824 KB |
testcase_01 | AC | 301 ms
50,936 KB |
testcase_02 | AC | 304 ms
50,976 KB |
testcase_03 | AC | 306 ms
50,848 KB |
testcase_04 | AC | 307 ms
51,376 KB |
testcase_05 | AC | 307 ms
50,992 KB |
testcase_06 | AC | 303 ms
50,848 KB |
testcase_07 | AC | 308 ms
51,164 KB |
testcase_08 | AC | 310 ms
51,216 KB |
testcase_09 | AC | 306 ms
50,952 KB |
testcase_10 | AC | 307 ms
50,868 KB |
testcase_11 | AC | 305 ms
50,736 KB |
testcase_12 | AC | 305 ms
50,972 KB |
testcase_13 | AC | 307 ms
50,944 KB |
testcase_14 | AC | 286 ms
49,876 KB |
testcase_15 | AC | 294 ms
49,524 KB |
testcase_16 | AC | 309 ms
51,072 KB |
コンパイルメッセージ
Main.kt:3:10: warning: parameter 'args' is never used fun main(args: Array<String>) { ^ Main.kt:7:51: warning: unnecessary non-null assertion (!!) on a non-null receiver of type Kusa val maxCount = kusaList.maxBy { it.count }!!.count ^
ソースコード
package net.ipipip0129.kotlin.yukicoder fun main(args: Array<String>) { val line = readLine()!! val kusaList = getKusaList(line) if(kusaList.size != 0) { val maxCount = kusaList.maxBy { it.count }!!.count kusaList.forEach { if (it.count == maxCount) { println(it.str) } } } } private fun getKusaList(str: String): ArrayList<Kusa> { var left = 0 var right = 0 var count = 0 val kusaString = str + "終" val kusaList = ArrayList<Kusa>() kusaString.forEachIndexed { index, c -> run { when (c) { 'w' -> { if (right != 0) { count += 1 } } else -> { if (count != 0) { kusaList.add(Kusa(count, str.substring(left, right).replace("w", ""))) left = index count = 0 } right = index + 1 } } } } return kusaList } private class Kusa(val count: Int, val str: String)