結果

問題 No.431 死亡フラグ
ユーザー poopi_pokepoopi_poke
提出日時 2016-11-25 15:21:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 396 bytes
コンパイル時間 3,481 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-11-27 11:13:03
合計ジャッジ時間 6,506 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
52,780 KB
testcase_01 AC 122 ms
53,568 KB
testcase_02 AC 119 ms
53,920 KB
testcase_03 AC 111 ms
53,308 KB
testcase_04 AC 118 ms
53,992 KB
testcase_05 AC 105 ms
53,912 KB
testcase_06 AC 97 ms
52,648 KB
testcase_07 AC 119 ms
53,956 KB
testcase_08 AC 114 ms
53,760 KB
testcase_09 AC 114 ms
53,724 KB
testcase_10 AC 117 ms
54,528 KB
testcase_11 AC 105 ms
52,792 KB
testcase_12 AC 116 ms
54,068 KB
testcase_13 AC 112 ms
54,052 KB
testcase_14 AC 111 ms
54,088 KB
testcase_15 AC 105 ms
52,908 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class A{
	public static void main(String args[]){
		Scanner sc=new Scanner(System.in);
		int a[]=new int[4];
		int b=0;
		for(int i=0; i<a.length; i++){
			a[i]=sc.nextInt();
			b+=a[i];
		}
		System.out.println(hanntei(a[3],b));
	}
	
	public static String hanntei(int a,int b){
		if((a==1)||(a!=1&&b<2)){
			return "SURVIVED";
		}else{
			return "DEAD";
		}
	}
}
0