結果

問題 No.712 赤旗
ユーザー KisaragiEffectiveKisaragiEffective
提出日時 2019-12-06 17:21:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 285 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 11,476 ms
コンパイル使用メモリ 429,524 KB
実行使用メモリ 50,760 KB
最終ジャッジ日時 2024-06-06 01:01:41
合計ジャッジ時間 12,783 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
50,708 KB
testcase_01 AC 278 ms
50,528 KB
testcase_02 AC 279 ms
50,760 KB
testcase_03 AC 271 ms
50,716 KB
testcase_04 AC 285 ms
50,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

fun main() {
    readLine()
    println(System.`in`.bufferedReader().lineSequence().map { s -> s.count { it == 'W' } }.sum())
}
0