結果

問題 No.431 死亡フラグ
ユーザー atkrymatkrym
提出日時 2016-10-18 11:32:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 520 bytes
コンパイル時間 2,175 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,372 KB
最終ジャッジ日時 2024-11-22 12:10:16
合計ジャッジ時間 5,069 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,252 KB
testcase_01 AC 126 ms
41,148 KB
testcase_02 AC 113 ms
40,088 KB
testcase_03 AC 122 ms
41,000 KB
testcase_04 AC 117 ms
39,812 KB
testcase_05 AC 128 ms
41,232 KB
testcase_06 AC 130 ms
41,064 KB
testcase_07 AC 126 ms
41,116 KB
testcase_08 AC 127 ms
41,096 KB
testcase_09 AC 128 ms
41,048 KB
testcase_10 AC 126 ms
41,116 KB
testcase_11 AC 114 ms
39,812 KB
testcase_12 AC 117 ms
40,048 KB
testcase_13 AC 127 ms
41,052 KB
testcase_14 AC 129 ms
41,120 KB
testcase_15 AC 128 ms
41,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int d = 0;
        for (int i=0;i<3;i++) {
            if (sc.nextInt() == 1) d++;
        }
        
        int s = sc.nextInt();
        
        if (s > 0) {
            System.out.println("SURVIVED");
        } else if (d > 1) {
            System.out.println("DEAD");
        } else {
            System.out.println("SURVIVED");
        }
    }
}
0