結果

問題 No.431 死亡フラグ
ユーザー Mcpu3Mcpu3
提出日時 2018-06-22 02:28:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 2,046 ms
コンパイル使用メモリ 74,280 KB
実行使用メモリ 41,312 KB
最終ジャッジ日時 2024-06-30 17:51:40
合計ジャッジ時間 4,415 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
40,924 KB
testcase_01 AC 114 ms
40,916 KB
testcase_02 AC 103 ms
39,892 KB
testcase_03 AC 116 ms
40,980 KB
testcase_04 AC 121 ms
41,312 KB
testcase_05 AC 126 ms
41,292 KB
testcase_06 AC 122 ms
40,976 KB
testcase_07 AC 112 ms
41,000 KB
testcase_08 AC 104 ms
39,696 KB
testcase_09 AC 118 ms
41,256 KB
testcase_10 AC 103 ms
39,832 KB
testcase_11 AC 113 ms
41,044 KB
testcase_12 AC 112 ms
41,096 KB
testcase_13 AC 121 ms
40,972 KB
testcase_14 AC 120 ms
40,896 KB
testcase_15 AC 105 ms
39,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class no431{
	public static void main(String[] args) {
		Scanner stdIn=new Scanner(System.in);
		int d[]=new int[3],s,a=0,i;
		d[0]=stdIn.nextInt();
		d[1]=stdIn.nextInt();
		d[2]=stdIn.nextInt();
		s=stdIn.nextInt();
		for(i=0;i<3;i++) if(d[i]==1) a++;
		if(s==1) System.out.print("SURVIVED");
		else if(a>=2) System.out.print("DEAD");
		else System.out.print("SURVIVED");
	}
}
0