結果

問題 No.431 死亡フラグ
ユーザー バカらっくバカらっく
提出日時 2022-02-04 10:15:02
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 279 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 11,842 ms
コンパイル使用メモリ 433,728 KB
実行使用メモリ 52,016 KB
最終ジャッジ日時 2024-06-11 10:05:16
合計ジャッジ時間 17,322 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 273 ms
51,812 KB
testcase_01 AC 274 ms
51,868 KB
testcase_02 AC 265 ms
51,828 KB
testcase_03 AC 267 ms
51,968 KB
testcase_04 AC 262 ms
51,608 KB
testcase_05 AC 279 ms
52,016 KB
testcase_06 AC 272 ms
51,768 KB
testcase_07 AC 273 ms
51,800 KB
testcase_08 AC 275 ms
51,524 KB
testcase_09 AC 275 ms
51,736 KB
testcase_10 AC 276 ms
51,676 KB
testcase_11 AC 269 ms
51,788 KB
testcase_12 AC 271 ms
51,776 KB
testcase_13 AC 274 ms
51,800 KB
testcase_14 AC 266 ms
51,456 KB
testcase_15 AC 272 ms
51,760 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val flags = readLine()!!.split(" ").map { it.toInt() == 1 }
    val isSave = flags.last() || flags.dropLast(1).count { it  } < 2
    println(if(isSave) "SURVIVED" else "DEAD")
}
0