結果

問題 No.431 死亡フラグ
ユーザー ohagi_1182ohagi_1182
提出日時 2017-10-13 11:58:06
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 382 bytes
コンパイル時間 2,313 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 41,432 KB
最終ジャッジ日時 2024-11-17 11:19:36
合計ジャッジ時間 5,130 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 135 ms
41,044 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 134 ms
41,012 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 134 ms
40,848 KB
testcase_08 AC 133 ms
41,244 KB
testcase_09 WA -
testcase_10 AC 134 ms
41,032 KB
testcase_11 AC 134 ms
41,000 KB
testcase_12 AC 133 ms
41,208 KB
testcase_13 WA -
testcase_14 AC 134 ms
41,124 KB
testcase_15 AC 133 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		int m = sc.nextInt();
		int n = sc.nextInt();
		int s = sc.nextInt();
		if(s == 1) {
			System.out.println("SURVIVED");
		} else {
			int cntDead = l + m + n;
			System.out.println(cntDead == 2 ? "SURVIVED" : "DEAD");
		}
	}
}
0