結果

問題 No.2350 Four Seasons
ユーザー JohmaruJohmaru
提出日時 2023-07-04 17:56:25
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 287 ms / 2,000 ms
コード長 231 bytes
コンパイル時間 11,443 ms
コンパイル使用メモリ 423,136 KB
実行使用メモリ 54,248 KB
最終ジャッジ日時 2024-07-18 13:10:58
合計ジャッジ時間 15,803 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 279 ms
54,120 KB
testcase_01 AC 277 ms
54,080 KB
testcase_02 AC 284 ms
54,140 KB
testcase_03 AC 281 ms
54,248 KB
testcase_04 AC 281 ms
54,208 KB
testcase_05 AC 283 ms
54,044 KB
testcase_06 AC 279 ms
54,248 KB
testcase_07 AC 281 ms
54,192 KB
testcase_08 AC 287 ms
54,016 KB
testcase_09 AC 282 ms
54,020 KB
testcase_10 AC 279 ms
54,148 KB
testcase_11 AC 283 ms
54,204 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:32: warning: unnecessary non-null assertion (!!) on a non-null receiver of type String
    val input_Season = readln()!!.toInt()
                               ^

ソースコード

diff #

fun main() {
    val input_Season = readln()!!.toInt()

    when (input_Season) {

        3,4,5 -> println("spring")
        6,7,8 -> println("summer")
        9,10,11 -> println("fall")
        12,1,2 -> println("winter")
    }
}
0