結果

問題 No.431 死亡フラグ
ユーザー TakaTaka
提出日時 2016-11-01 14:38:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 463 bytes
コンパイル時間 3,400 ms
コンパイル使用メモリ 75,740 KB
実行使用メモリ 41,592 KB
最終ジャッジ日時 2024-05-03 20:38:52
合計ジャッジ時間 5,934 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 112 ms
41,088 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 109 ms
40,372 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 117 ms
40,552 KB
testcase_09 WA -
testcase_10 AC 117 ms
41,308 KB
testcase_11 AC 118 ms
41,336 KB
testcase_12 AC 118 ms
41,244 KB
testcase_13 WA -
testcase_14 AC 117 ms
41,004 KB
testcase_15 AC 108 ms
39,952 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