結果

問題 No.431 死亡フラグ
ユーザー AoiroFukurouAoiroFukurou
提出日時 2016-12-18 13:34:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 3,678 ms
コンパイル使用メモリ 77,508 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-12-14 08:16:31
合計ジャッジ時間 6,729 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,076 KB
testcase_01 AC 131 ms
41,036 KB
testcase_02 AC 118 ms
40,048 KB
testcase_03 AC 127 ms
41,340 KB
testcase_04 AC 134 ms
41,056 KB
testcase_05 AC 132 ms
41,324 KB
testcase_06 AC 134 ms
41,060 KB
testcase_07 AC 128 ms
41,076 KB
testcase_08 AC 115 ms
41,080 KB
testcase_09 AC 120 ms
40,072 KB
testcase_10 AC 127 ms
41,040 KB
testcase_11 AC 128 ms
41,292 KB
testcase_12 AC 132 ms
41,392 KB
testcase_13 AC 128 ms
41,328 KB
testcase_14 AC 135 ms
41,332 KB
testcase_15 AC 135 ms
41,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.Scanner;

public class No_431 {
public static void main(String[] args) {
	int dead = 0;
	int survived = 0;
	Scanner sc = new Scanner(System.in);
	for(int i = 0; i < 3; i++){
		int D = sc.nextInt();
		if(D == 1){
			dead++;
		}
	}
	int S = sc.nextInt();
	if(S == 1){
		survived++;
	}
	sc.close();
	if(dead >= 2 && survived == 0){
		System.out.println("DEAD");
	}else{
		System.out.println("SURVIVED");
	}
}
}
0