結果

問題 No.431 死亡フラグ
ユーザー satumaimosatumaimo
提出日時 2017-07-07 18:09:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 2,406 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 56,012 KB
最終ジャッジ日時 2024-10-06 10:01:35
合計ジャッジ時間 5,209 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
54,220 KB
testcase_01 AC 135 ms
54,312 KB
testcase_02 AC 134 ms
54,328 KB
testcase_03 AC 132 ms
54,224 KB
testcase_04 AC 135 ms
54,152 KB
testcase_05 AC 135 ms
54,020 KB
testcase_06 AC 133 ms
54,220 KB
testcase_07 AC 134 ms
54,168 KB
testcase_08 AC 134 ms
53,972 KB
testcase_09 AC 133 ms
54,232 KB
testcase_10 AC 126 ms
53,056 KB
testcase_11 AC 140 ms
54,344 KB
testcase_12 AC 137 ms
56,012 KB
testcase_13 AC 136 ms
54,052 KB
testcase_14 AC 138 ms
54,184 KB
testcase_15 AC 141 ms
54,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.Scanner;
public class Main {
    public static void main(String[] args) throws Exception {
        Scanner s = new Scanner(System.in);
        int a = s.nextInt();
        int b = s.nextInt();
        int c = s.nextInt();
        int d = s.nextInt();
        if (d == 1){
            System.out.println("SURVIVED");
        }else if (a+b+c<2){
            System.out.println("SURVIVED");
        } else{
            System.out.println("DEAD");
        }
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        String line = br.readLine();
    }
}
0