結果

問題 No.431 死亡フラグ
ユーザー jimanojimano
提出日時 2018-01-13 17:15:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 2,000 ms
コード長 565 bytes
コンパイル時間 2,977 ms
コンパイル使用メモリ 74,764 KB
実行使用メモリ 54,148 KB
最終ジャッジ日時 2024-06-06 10:09:46
合計ジャッジ時間 5,676 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
52,772 KB
testcase_01 AC 113 ms
53,408 KB
testcase_02 AC 111 ms
52,836 KB
testcase_03 AC 121 ms
53,716 KB
testcase_04 AC 122 ms
53,752 KB
testcase_05 AC 122 ms
54,040 KB
testcase_06 AC 121 ms
54,112 KB
testcase_07 AC 113 ms
52,684 KB
testcase_08 AC 121 ms
53,956 KB
testcase_09 AC 128 ms
54,148 KB
testcase_10 AC 126 ms
53,720 KB
testcase_11 AC 121 ms
54,000 KB
testcase_12 AC 122 ms
53,996 KB
testcase_13 AC 126 ms
53,852 KB
testcase_14 AC 108 ms
52,640 KB
testcase_15 AC 109 ms
53,084 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.util.Scanner;

public class No0431 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int[] flg = new int[3];
			for (int i = 0; i < 3; i++) {
				flg[i] = sc.nextInt();
			}
			int S = sc.nextInt();

			System.out.println(checkFlg(S, flg));
		}
	}

	static String checkFlg(int S, int[] flg) {
		if (S == 1) {
			return "SURVIVED";
		}

		int cntDeadFlg = 0;
		for (int f : flg) {
			if (f == 1)
				cntDeadFlg++;
		}
		if (cntDeadFlg < 2)
			return "SURVIVED";

		return "DEAD";
	}
}
0