結果

問題 No.431 死亡フラグ
ユーザー yamax3232yamax3232
提出日時 2017-02-09 21:57:10
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 495 bytes
コンパイル時間 3,522 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 41,392 KB
最終ジャッジ日時 2024-06-07 18:11:02
合計ジャッジ時間 6,194 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
40,880 KB
testcase_01 AC 118 ms
41,072 KB
testcase_02 AC 122 ms
40,928 KB
testcase_03 AC 119 ms
40,972 KB
testcase_04 AC 120 ms
41,332 KB
testcase_05 AC 120 ms
41,088 KB
testcase_06 AC 113 ms
40,564 KB
testcase_07 AC 119 ms
41,200 KB
testcase_08 AC 124 ms
41,392 KB
testcase_09 AC 122 ms
41,008 KB
testcase_10 AC 123 ms
41,328 KB
testcase_11 AC 125 ms
41,012 KB
testcase_12 AC 121 ms
41,284 KB
testcase_13 AC 124 ms
40,992 KB
testcase_14 AC 115 ms
39,960 KB
testcase_15 AC 118 ms
40,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class DeathFlag {
	public static void main(String[] args){
		Scanner kb=new Scanner(System.in);
		int s,df[]={0,0,0};
		int t=0;
		int count=0;
		for(int i=0;i<3;i++){
			df[i]=kb.nextInt();
		}
		s=kb.nextInt();
		if(s==1){
			System.out.println("SURVIVED");
		}else{
			for(int i=0;i<3;i++){
				if(df[i]==1){
					count++;
				}
			}
			if(count>=2&&t!=1){
				System.out.println("DEAD");
			}else if(t!=1){
				System.out.println("SURVIVED");	
			}
		}
	}
}
0