結果

問題 No.431 死亡フラグ
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-03 21:37:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 67 ms / 2,000 ms
コード長 907 bytes
コンパイル時間 2,391 ms
コンパイル使用メモリ 79,528 KB
実行使用メモリ 38,212 KB
最終ジャッジ日時 2024-09-14 07:10:12
合計ジャッジ時間 4,325 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
37,452 KB
testcase_01 AC 67 ms
38,000 KB
testcase_02 AC 65 ms
37,328 KB
testcase_03 AC 64 ms
37,424 KB
testcase_04 AC 66 ms
37,448 KB
testcase_05 AC 65 ms
37,936 KB
testcase_06 AC 66 ms
37,900 KB
testcase_07 AC 66 ms
37,712 KB
testcase_08 AC 65 ms
38,212 KB
testcase_09 AC 66 ms
37,804 KB
testcase_10 AC 64 ms
37,828 KB
testcase_11 AC 65 ms
37,768 KB
testcase_12 AC 65 ms
37,780 KB
testcase_13 AC 66 ms
38,116 KB
testcase_14 AC 65 ms
37,836 KB
testcase_15 AC 67 ms
38,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.stream.Stream;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int[] flags = Stream.of(inputs).mapToInt(Integer::parseInt).toArray();

        if(flags[3]==1) {
            System.out.println("SURVIVED");
        } else {
            int deadCounter = 0;
            for (int i = 0; i < 3; i++) {
                if (flags[i] == 1) {
                    deadCounter += 1;
                }
            }

            if(deadCounter>=2){
                System.out.println("DEAD");
            } else {
                System.out.println("SURVIVED");
            }
        }
    }
}
0