結果

問題 No.431 死亡フラグ
ユーザー yuma_shobon1108yuma_shobon1108
提出日時 2016-11-10 18:13:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,993 ms
コンパイル使用メモリ 74,256 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-05-04 01:36:11
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,048 KB
testcase_01 AC 131 ms
41,092 KB
testcase_02 AC 131 ms
41,028 KB
testcase_03 AC 138 ms
41,308 KB
testcase_04 AC 133 ms
41,252 KB
testcase_05 AC 128 ms
41,060 KB
testcase_06 AC 131 ms
41,076 KB
testcase_07 AC 128 ms
41,252 KB
testcase_08 AC 119 ms
39,808 KB
testcase_09 AC 130 ms
41,212 KB
testcase_10 AC 120 ms
40,088 KB
testcase_11 AC 132 ms
41,372 KB
testcase_12 AC 132 ms
41,244 KB
testcase_13 AC 132 ms
40,956 KB
testcase_14 AC 128 ms
41,008 KB
testcase_15 AC 131 ms
41,216 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