結果

問題 No.431 死亡フラグ
ユーザー fukuseifukusei
提出日時 2017-05-20 23:04:37
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 362 bytes
コンパイル時間 3,506 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 41,504 KB
最終ジャッジ日時 2024-09-19 00:32:00
合計ジャッジ時間 6,420 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,460 KB
testcase_01 AC 135 ms
41,252 KB
testcase_02 AC 133 ms
41,504 KB
testcase_03 AC 134 ms
41,460 KB
testcase_04 AC 133 ms
41,360 KB
testcase_05 AC 135 ms
41,316 KB
testcase_06 AC 136 ms
41,324 KB
testcase_07 AC 134 ms
41,348 KB
testcase_08 AC 131 ms
41,368 KB
testcase_09 AC 132 ms
40,976 KB
testcase_10 AC 135 ms
41,152 KB
testcase_11 AC 133 ms
41,028 KB
testcase_12 AC 134 ms
41,416 KB
testcase_13 AC 133 ms
41,164 KB
testcase_14 AC 133 ms
41,100 KB
testcase_15 AC 136 ms
41,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*; 

public class test {
	public static void main(String[] args){
		Scanner sc = new Scanner(System.in);
		int sum = 0;
		for(int i=0; i<3; i++){
			int d = sc.nextInt();
			if(d == 1){
				sum++;
			}
		}
		int s = sc.nextInt();
		
		if(s == 1 || sum < 2 ){
			System.out.println("SURVIVED");
		}
		else{
			System.out.println("DEAD");
		}
	}
}
0