結果

問題 No.431 死亡フラグ
ユーザー HEGO55HEGO55
提出日時 2017-05-20 22:55:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 532 bytes
コンパイル時間 2,619 ms
コンパイル使用メモリ 74,664 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-09-19 00:31:53
合計ジャッジ時間 4,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
41,232 KB
testcase_01 AC 113 ms
41,260 KB
testcase_02 AC 114 ms
41,208 KB
testcase_03 AC 110 ms
41,040 KB
testcase_04 AC 114 ms
41,520 KB
testcase_05 AC 112 ms
40,992 KB
testcase_06 AC 100 ms
41,352 KB
testcase_07 AC 104 ms
41,200 KB
testcase_08 AC 108 ms
41,212 KB
testcase_09 AC 113 ms
41,464 KB
testcase_10 AC 120 ms
40,976 KB
testcase_11 AC 118 ms
41,228 KB
testcase_12 AC 121 ms
40,960 KB
testcase_13 AC 117 ms
41,072 KB
testcase_14 AC 121 ms
41,404 KB
testcase_15 AC 106 ms
41,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class No431{
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int[] number = new int[4];
		int deadCount = 0;
		
		for(int i=0; i<number.length; i++){
			number[i] = sc.nextInt();
		}
		
		for(int j=0; j<number.length-1; j++){
			if(number[j] == 1){
				deadCount++;
			}
		}
		
		if(number[3] == 1){
			System.out.println("SURVIVED");
		}
		
		if(number[3] != 1){
			if(deadCount >= 2){
				System.out.println("DEAD");
			}else{
				System.out.println("SURVIVED");
			}
		}
	}
}
0