結果

問題 No.418 ミンミンゼミ
ユーザー komkomhkomkomh
提出日時 2019-06-09 10:45:16
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 317 ms / 1,000 ms
コード長 156 bytes
コンパイル時間 10,675 ms
コンパイル使用メモリ 435,136 KB
実行使用メモリ 51,468 KB
最終ジャッジ日時 2024-11-20 18:51:06
合計ジャッジ時間 20,366 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 312 ms
51,424 KB
testcase_01 AC 307 ms
51,412 KB
testcase_02 AC 314 ms
51,388 KB
testcase_03 AC 310 ms
50,972 KB
testcase_04 AC 311 ms
51,076 KB
testcase_05 AC 311 ms
51,100 KB
testcase_06 AC 311 ms
51,332 KB
testcase_07 AC 311 ms
51,140 KB
testcase_08 AC 314 ms
51,372 KB
testcase_09 AC 312 ms
51,204 KB
testcase_10 AC 306 ms
51,468 KB
testcase_11 AC 311 ms
51,228 KB
testcase_12 AC 312 ms
51,044 KB
testcase_13 AC 317 ms
51,052 KB
testcase_14 AC 313 ms
51,348 KB
testcase_15 AC 312 ms
51,416 KB
testcase_16 AC 312 ms
51,148 KB
testcase_17 AC 310 ms
51,188 KB
testcase_18 AC 310 ms
50,952 KB
testcase_19 AC 310 ms
51,328 KB
testcase_20 AC 308 ms
51,228 KB
testcase_21 AC 311 ms
51,092 KB
testcase_22 AC 312 ms
51,180 KB
testcase_23 AC 310 ms
51,076 KB
testcase_24 AC 309 ms
51,024 KB
testcase_25 AC 312 ms
51,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder

fun main() {
    val S = readLine()!!

    val count = S.replace("-", "").chunked(3).filter { it == "min" }.count()
    println(count)
}
0