結果

問題 No.431 死亡フラグ
ユーザー minokasagominokasago
提出日時 2019-11-01 14:00:06
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 313 ms / 2,000 ms
コード長 207 bytes
コンパイル時間 10,659 ms
コンパイル使用メモリ 431,540 KB
実行使用メモリ 56,952 KB
最終ジャッジ日時 2024-09-14 22:39:25
合計ジャッジ時間 16,600 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 304 ms
56,808 KB
testcase_01 AC 306 ms
56,796 KB
testcase_02 AC 309 ms
56,732 KB
testcase_03 AC 307 ms
56,676 KB
testcase_04 AC 308 ms
56,712 KB
testcase_05 AC 306 ms
56,792 KB
testcase_06 AC 308 ms
56,808 KB
testcase_07 AC 313 ms
56,720 KB
testcase_08 AC 311 ms
56,724 KB
testcase_09 AC 311 ms
56,848 KB
testcase_10 AC 310 ms
56,952 KB
testcase_11 AC 310 ms
56,824 KB
testcase_12 AC 309 ms
56,608 KB
testcase_13 AC 311 ms
56,612 KB
testcase_14 AC 311 ms
56,796 KB
testcase_15 AC 308 ms
56,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import kotlin.math.*

fun main()
{
    val f = readLine()!!.split(" ").map(String::toInt)

    if (f[3] > 0 || f[0]+f[1]+f[2] < 2) {
        println("SURVIVED")
    } else {
        println("DEAD")
    }
}

0