結果

問題 No.431 死亡フラグ
ユーザー yuiyui
提出日時 2017-02-20 11:24:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 1,768 ms
コンパイル使用メモリ 73,976 KB
実行使用メモリ 54,100 KB
最終ジャッジ日時 2024-06-09 14:48:13
合計ジャッジ時間 4,291 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
53,068 KB
testcase_01 AC 102 ms
52,604 KB
testcase_02 AC 110 ms
53,872 KB
testcase_03 AC 103 ms
53,012 KB
testcase_04 AC 114 ms
54,008 KB
testcase_05 AC 102 ms
52,936 KB
testcase_06 AC 113 ms
54,004 KB
testcase_07 AC 103 ms
52,912 KB
testcase_08 AC 102 ms
52,932 KB
testcase_09 AC 97 ms
53,048 KB
testcase_10 AC 110 ms
53,940 KB
testcase_11 AC 105 ms
53,416 KB
testcase_12 AC 101 ms
54,004 KB
testcase_13 AC 111 ms
54,036 KB
testcase_14 AC 111 ms
54,100 KB
testcase_15 AC 107 ms
52,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

    	Scanner sc = new Scanner(System.in);
    	int fl1 = sc.nextInt();
    	int fl2 = sc.nextInt();
    	int fl3 = sc.nextInt();
    	int fl4 = sc.nextInt();
    	int count = fl1+fl2+fl3;

    	if((fl4==1)||(count<2)){
    		System.out.println("SURVIVED");
    	}else{
    		System.out.println("DEAD");
    	}

    }

}
0