結果

問題 No.431 死亡フラグ
ユーザー FpmpAmpmFpmpAmpm
提出日時 2016-10-17 23:20:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 2,152 ms
コンパイル使用メモリ 76,736 KB
実行使用メモリ 41,328 KB
最終ジャッジ日時 2024-11-22 13:37:51
合計ジャッジ時間 4,933 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,128 KB
testcase_01 AC 126 ms
41,252 KB
testcase_02 AC 114 ms
39,940 KB
testcase_03 AC 122 ms
39,936 KB
testcase_04 AC 131 ms
41,124 KB
testcase_05 AC 128 ms
41,084 KB
testcase_06 AC 128 ms
40,856 KB
testcase_07 AC 128 ms
41,200 KB
testcase_08 AC 119 ms
40,368 KB
testcase_09 AC 129 ms
41,328 KB
testcase_10 AC 132 ms
41,208 KB
testcase_11 AC 127 ms
41,028 KB
testcase_12 AC 119 ms
39,908 KB
testcase_13 AC 125 ms
41,216 KB
testcase_14 AC 127 ms
41,060 KB
testcase_15 AC 126 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* package whatever; // don't place package name! */

import java.util.*;
import java.lang.*;
import java.io.*;

/* Name of the class has to be "Main" only if the class is public. */
class Ideone
{
	public static void main (String[] args) throws java.lang.Exception
	{
    	Scanner sc = new Scanner(System.in);
    	int d1 = sc.nextInt();
    	int d2 = sc.nextInt();
    	int d3 = sc.nextInt();
    	int s = (0 < sc.nextInt()) ? 0:1;
    	
    	if (1 < (d1 + d2 + d3)*s) {
    		System.out.println("DEAD");
    	} else {
    		System.out.println("SURVIVED");
    	}
	}
}
0