結果

問題 No.431 死亡フラグ
ユーザー hermione17hermione17
提出日時 2016-10-14 22:30:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 483 bytes
コンパイル時間 3,350 ms
コンパイル使用メモリ 74,252 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-11-22 07:20:05
合計ジャッジ時間 6,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
53,908 KB
testcase_01 AC 137 ms
53,956 KB
testcase_02 AC 135 ms
54,320 KB
testcase_03 AC 134 ms
53,700 KB
testcase_04 AC 135 ms
54,088 KB
testcase_05 AC 132 ms
54,112 KB
testcase_06 AC 133 ms
53,940 KB
testcase_07 AC 134 ms
53,988 KB
testcase_08 AC 135 ms
54,240 KB
testcase_09 AC 120 ms
52,564 KB
testcase_10 AC 135 ms
54,156 KB
testcase_11 AC 133 ms
53,840 KB
testcase_12 AC 135 ms
54,556 KB
testcase_13 AC 134 ms
54,072 KB
testcase_14 AC 135 ms
53,964 KB
testcase_15 AC 134 ms
54,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.PrintStream;
import java.util.Scanner;


public class Y431 {
	Y431() throws Exception {
		Scanner in = new Scanner(System.in);
		PrintStream out = new PrintStream(System.out);

		int d1 = in.nextInt();
		int d2 = in.nextInt();
		int d3 = in.nextInt();
		int s = in.nextInt();
		
		if (s == 1 || (d1 + d2 + d3) < 2) out.println("SURVIVED");
		else out.println("DEAD");
		
		out.close();
	}

	public static void main(String argv[]) throws Exception {
		new Y431();
	}
}
0