結果

問題 No.431 死亡フラグ
ユーザー ぴろずぴろず
提出日時 2016-10-14 22:28:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 2,117 ms
コンパイル使用メモリ 80,212 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-11-22 07:11:41
合計ジャッジ時間 4,985 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,336 KB
testcase_01 AC 134 ms
41,144 KB
testcase_02 AC 133 ms
41,064 KB
testcase_03 AC 133 ms
41,488 KB
testcase_04 AC 135 ms
41,348 KB
testcase_05 AC 135 ms
41,176 KB
testcase_06 AC 132 ms
41,328 KB
testcase_07 AC 134 ms
41,316 KB
testcase_08 AC 133 ms
40,948 KB
testcase_09 AC 133 ms
41,336 KB
testcase_10 AC 134 ms
41,360 KB
testcase_11 AC 130 ms
41,108 KB
testcase_12 AC 133 ms
41,088 KB
testcase_13 AC 131 ms
41,344 KB
testcase_14 AC 117 ms
40,096 KB
testcase_15 AC 129 ms
40,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no431;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int d1 = sc.nextInt();
		int d2 = sc.nextInt();
		int d3 = sc.nextInt();
		int s = sc.nextInt();
		System.out.println((d1 + d2 + d3 >= 2) && s == 0 ? "DEAD" : "SURVIVED");
	}

}
0