結果

問題 No.841 8/32
ユーザー バカらっくバカらっく
提出日時 2022-02-03 14:04:22
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 282 bytes
コンパイル時間 11,659 ms
コンパイル使用メモリ 432,324 KB
実行使用メモリ 51,356 KB
最終ジャッジ日時 2024-06-11 09:54:34
合計ジャッジ時間 16,865 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 275 ms
51,020 KB
testcase_01 AC 257 ms
50,944 KB
testcase_02 AC 263 ms
51,040 KB
testcase_03 AC 257 ms
51,028 KB
testcase_04 AC 257 ms
50,984 KB
testcase_05 AC 260 ms
51,088 KB
testcase_06 AC 258 ms
50,972 KB
testcase_07 AC 259 ms
51,084 KB
testcase_08 AC 255 ms
51,000 KB
testcase_09 AC 257 ms
50,896 KB
testcase_10 AC 271 ms
51,016 KB
testcase_11 AC 261 ms
51,356 KB
testcase_12 AC 274 ms
51,024 KB
testcase_13 AC 262 ms
51,112 KB
testcase_14 AC 256 ms
51,276 KB
testcase_15 AC 272 ms
51,016 KB
testcase_16 AC 255 ms
51,144 KB
testcase_17 AC 259 ms
50,916 KB
testcase_18 AC 258 ms
51,048 KB
testcase_19 AC 262 ms
51,048 KB
testcase_20 AC 258 ms
50,876 KB
testcase_21 AC 256 ms
50,924 KB
testcase_22 AC 256 ms
51,080 KB
testcase_23 AC 256 ms
51,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val s = readLine()!!.split(" ")
    val ans = when {
        s.all { it[0] == 'S' } -> {
            "8/33"
        }
        s[0][0] == 'S' -> {
            "8/32"
        }
        else -> {
            "8/31"
        }
    }
    println(ans)
}
0