結果

問題 No.431 死亡フラグ
ユーザー jimanojimano
提出日時 2018-01-13 17:21:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 2,988 ms
コンパイル使用メモリ 76,452 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-06-06 10:09:56
合計ジャッジ時間 5,667 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
40,876 KB
testcase_01 AC 123 ms
40,732 KB
testcase_02 AC 123 ms
41,180 KB
testcase_03 AC 122 ms
41,004 KB
testcase_04 AC 123 ms
41,008 KB
testcase_05 AC 127 ms
40,880 KB
testcase_06 AC 129 ms
41,044 KB
testcase_07 AC 116 ms
40,796 KB
testcase_08 AC 124 ms
40,752 KB
testcase_09 AC 122 ms
41,232 KB
testcase_10 AC 124 ms
41,064 KB
testcase_11 AC 122 ms
41,308 KB
testcase_12 AC 123 ms
41,328 KB
testcase_13 AC 126 ms
40,696 KB
testcase_14 AC 108 ms
41,052 KB
testcase_15 AC 125 ms
41,472 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package me.yukicoder.lv1;

import java.util.Scanner;

public class No0431 {
	public static void main(String[] args) {
		try (Scanner sc = new Scanner(System.in)) {
			int d1 = sc.nextInt();
			int d2 = sc.nextInt();
			int d3 = sc.nextInt();
			int d = d1 + d2 + d3;
			int S = sc.nextInt();

			if (S == 1 || d < 2) {
				System.out.println("SURVIVED");
			}
			else {
				System.out.println("DEAD");
			}
		}
	}
}
0