結果

問題 No.431 死亡フラグ
ユーザー OGNMOGNM
提出日時 2016-11-14 12:22:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 3,613 ms
コンパイル使用メモリ 74,384 KB
実行使用メモリ 41,580 KB
最終ジャッジ日時 2024-05-04 11:38:15
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,260 KB
testcase_01 AC 132 ms
41,176 KB
testcase_02 AC 133 ms
41,196 KB
testcase_03 AC 131 ms
41,172 KB
testcase_04 AC 133 ms
41,340 KB
testcase_05 AC 134 ms
41,268 KB
testcase_06 AC 118 ms
40,160 KB
testcase_07 AC 131 ms
41,580 KB
testcase_08 AC 136 ms
41,372 KB
testcase_09 AC 131 ms
40,992 KB
testcase_10 AC 133 ms
41,388 KB
testcase_11 AC 133 ms
41,132 KB
testcase_12 AC 134 ms
41,212 KB
testcase_13 AC 133 ms
41,296 KB
testcase_14 AC 129 ms
41,280 KB
testcase_15 AC 135 ms
41,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main_01{
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int d1 = sc.nextInt();
        int d2 = sc.nextInt();
        int d3 = sc.nextInt();
        int s1 = sc.nextInt();
        int d = d1 + d2 + d3;

        if(d <= 1){
            System.out.println("SURVIVED");
        }else if(d >= 2 && s1 == 1 ){
            System.out.println("SURVIVED");
        }else if(d >= 2 && s1== 0){
            System.out.println("DEAD");
        }
    }
}
0