結果

問題 No.431 死亡フラグ
ユーザー TakaTaka
提出日時 2016-11-01 14:38:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 76,724 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-11-25 00:53:27
合計ジャッジ時間 6,035 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 106 ms
52,804 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 132 ms
53,904 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 125 ms
54,008 KB
testcase_09 WA -
testcase_10 AC 121 ms
53,900 KB
testcase_11 AC 117 ms
52,724 KB
testcase_12 AC 128 ms
54,132 KB
testcase_13 WA -
testcase_14 AC 111 ms
52,804 KB
testcase_15 AC 129 ms
54,104 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.Arrays;
import java.math.BigDecimal;

public class a{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int a=sc.nextInt();
		int b=sc.nextInt();
		int c=sc.nextInt();
		int d=sc.nextInt();
		
		if(d==1){
			System.out.println("SURVIVED");
		}else if(a==1&&b==1 || a==1&&c==1 || b==1&&c==1){
			System.out.println("SURVIVED");
		}else{
			System.out.println("DEAD");
		}
    }
}
0