結果

問題 No.712 赤旗
ユーザー minokasagominokasago
提出日時 2019-11-01 11:21:56
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 323 ms / 2,000 ms
コード長 175 bytes
コンパイル時間 11,917 ms
コンパイル使用メモリ 436,064 KB
実行使用メモリ 51,728 KB
最終ジャッジ日時 2024-09-14 22:35:18
合計ジャッジ時間 14,354 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 317 ms
51,588 KB
testcase_01 AC 319 ms
51,728 KB
testcase_02 AC 317 ms
51,420 KB
testcase_03 AC 317 ms
51,468 KB
testcase_04 AC 323 ms
51,468 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:3:13: warning: variable 'W' is never used
    val (N, W) = readLine()!!.split(" ").map(String::toInt)
            ^

ソースコード

diff #

fun main()
{
    val (N, W) = readLine()!!.split(" ").map(String::toInt)
    var ans = 0
    repeat(N) { ans += readLine()!!.count { c -> c != 'R'} }
    println("${ans}")
}

0