結果

問題 No.431 死亡フラグ
ユーザー tsunabittsunabit
提出日時 2018-06-30 16:39:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 3,650 ms
コンパイル使用メモリ 75,016 KB
実行使用メモリ 54,820 KB
最終ジャッジ日時 2024-07-01 00:57:11
合計ジャッジ時間 6,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 133 ms
53,984 KB
testcase_02 WA -
testcase_03 AC 131 ms
54,092 KB
testcase_04 AC 131 ms
54,048 KB
testcase_05 AC 131 ms
54,108 KB
testcase_06 AC 136 ms
54,060 KB
testcase_07 AC 130 ms
53,852 KB
testcase_08 AC 131 ms
53,968 KB
testcase_09 WA -
testcase_10 AC 132 ms
53,900 KB
testcase_11 AC 130 ms
54,056 KB
testcase_12 AC 138 ms
53,980 KB
testcase_13 AC 134 ms
53,996 KB
testcase_14 AC 132 ms
53,940 KB
testcase_15 AC 129 ms
54,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
public class No431 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int d =sc.nextInt() + sc.nextInt() + sc.nextInt(), s = sc.nextInt();
		if(s == 1) {
				System.out.println("SURVIVED");
		}else if(d > 2) {
				System.out.println("DEAD");
		}else {
				System.out.println("SURVIVED");
		}
	}
}
0