結果

問題 No.431 死亡フラグ
ユーザー mura40424mura40424
提出日時 2016-12-18 13:38:54
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 9,680 ms
コンパイル使用メモリ 435,832 KB
実行使用メモリ 51,948 KB
最終ジャッジ日時 2024-11-20 07:16:34
合計ジャッジ時間 15,195 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 281 ms
51,948 KB
testcase_01 AC 276 ms
51,836 KB
testcase_02 AC 281 ms
51,756 KB
testcase_03 AC 281 ms
51,792 KB
testcase_04 AC 279 ms
51,728 KB
testcase_05 AC 285 ms
51,880 KB
testcase_06 AC 293 ms
51,920 KB
testcase_07 AC 286 ms
51,808 KB
testcase_08 AC 281 ms
51,892 KB
testcase_09 AC 279 ms
51,644 KB
testcase_10 AC 279 ms
51,924 KB
testcase_11 AC 277 ms
51,664 KB
testcase_12 AC 280 ms
51,744 KB
testcase_13 AC 282 ms
51,648 KB
testcase_14 AC 279 ms
51,948 KB
testcase_15 AC 285 ms
51,764 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val flags : List<Int> = readLine()!!.split(" ").map { it.toInt() }
    if (isDead(flags)) {
        println("DEAD")
    } else {
        println("SURVIVED")
    }
}

fun isDead(flags : List<Int>) : Boolean {
    if (flags.last() == 1) {
        return false
    } else {
        return flags.sum() >= 2
    }
}
0