結果

問題 No.431 死亡フラグ
ユーザー matsuyoshi30matsuyoshi30
提出日時 2017-03-13 22:46:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 113 ms / 2,000 ms
コード長 586 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,188 KB
最終ジャッジ日時 2024-06-30 00:40:43
合計ジャッジ時間 4,164 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,720 KB
testcase_01 AC 104 ms
40,760 KB
testcase_02 AC 104 ms
41,116 KB
testcase_03 AC 104 ms
40,944 KB
testcase_04 AC 103 ms
41,068 KB
testcase_05 AC 95 ms
40,156 KB
testcase_06 AC 108 ms
41,140 KB
testcase_07 AC 110 ms
41,004 KB
testcase_08 AC 109 ms
41,036 KB
testcase_09 AC 106 ms
40,904 KB
testcase_10 AC 103 ms
40,736 KB
testcase_11 AC 112 ms
41,100 KB
testcase_12 AC 111 ms
41,176 KB
testcase_13 AC 113 ms
41,160 KB
testcase_14 AC 113 ms
41,188 KB
testcase_15 AC 103 ms
40,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        int d1 = in.nextInt();
        int d2 = in.nextInt();
        int d3 = in.nextInt();
        int s = in.nextInt();

        String ans = "";

        if(s == 1) {
            ans = "SURVIVED";
        } else {
            if(d1 + d2 + d3 >= 2) ans = "DEAD";
            else ans = "SURVIVED";
        }

        System.out.println(ans);

        in.close();
    }
}
0