結果

問題 No.431 死亡フラグ
ユーザー fal_rndfal_rnd
提出日時 2016-10-27 23:34:20
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 268 bytes
コンパイル時間 2,411 ms
コンパイル使用メモリ 74,236 KB
実行使用メモリ 41,552 KB
最終ジャッジ日時 2024-11-24 04:59:02
合計ジャッジ時間 4,742 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 128 ms
41,220 KB
testcase_02 WA -
testcase_03 AC 132 ms
41,432 KB
testcase_04 AC 133 ms
41,404 KB
testcase_05 AC 131 ms
40,988 KB
testcase_06 AC 130 ms
41,204 KB
testcase_07 WA -
testcase_08 AC 129 ms
41,272 KB
testcase_09 WA -
testcase_10 AC 130 ms
41,196 KB
testcase_11 AC 127 ms
40,912 KB
testcase_12 AC 131 ms
40,968 KB
testcase_13 AC 110 ms
40,224 KB
testcase_14 AC 127 ms
41,204 KB
testcase_15 AC 123 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class A {
	static Scanner s = new Scanner(System.in);
	public static void main(String[] args) {
		int f = s.nextInt()+s.nextInt()+s.nextInt();
		if(s.nextInt()!=1 && f>=2) {
			System.out.println("DEAD");
		}
		System.out.println("SURVIVED");
	}
}
0