結果

問題 No.431 死亡フラグ
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-10 18:13:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,980 ms
コンパイル使用メモリ 73,848 KB
実行使用メモリ 54,188 KB
最終ジャッジ日時 2024-11-25 07:26:19
合計ジャッジ時間 4,652 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
54,188 KB
testcase_01 AC 118 ms
53,908 KB
testcase_02 AC 116 ms
54,060 KB
testcase_03 AC 113 ms
53,756 KB
testcase_04 AC 105 ms
52,484 KB
testcase_05 AC 120 ms
52,884 KB
testcase_06 AC 118 ms
54,080 KB
testcase_07 AC 105 ms
52,416 KB
testcase_08 AC 105 ms
52,692 KB
testcase_09 AC 106 ms
52,692 KB
testcase_10 AC 119 ms
53,848 KB
testcase_11 AC 115 ms
54,048 KB
testcase_12 AC 105 ms
52,592 KB
testcase_13 AC 106 ms
52,960 KB
testcase_14 AC 120 ms
53,828 KB
testcase_15 AC 121 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Question431
{
	public static void main(String[] args)
	{
	
		Scanner scan = new Scanner(System.in);
		
		int flg[] = new int[4];
		
		for(int i=0; i<4; i++){
			flg[i] = scan.nextInt();
		}
		
		int judge = 0;
		for(int i=0; i<3; i++){
			judge += flg[i];
		}
		
		if(flg[3] == 1 || judge < 2){
			System.out.println("SURVIVED");
		}
		else{
			System.out.println("DEAD");
		}
	}
}
0