結果

問題 No.431 死亡フラグ
ユーザー darknightdarknight
提出日時 2016-10-14 22:28:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 3,683 ms
コンパイル使用メモリ 75,128 KB
実行使用メモリ 41,268 KB
最終ジャッジ日時 2024-11-22 07:10:38
合計ジャッジ時間 4,860 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,228 KB
testcase_01 AC 109 ms
40,168 KB
testcase_02 AC 110 ms
40,152 KB
testcase_03 AC 115 ms
40,120 KB
testcase_04 AC 125 ms
41,248 KB
testcase_05 AC 124 ms
40,964 KB
testcase_06 AC 125 ms
41,072 KB
testcase_07 AC 123 ms
41,268 KB
testcase_08 AC 124 ms
41,176 KB
testcase_09 AC 117 ms
40,040 KB
testcase_10 AC 124 ms
41,120 KB
testcase_11 AC 126 ms
41,128 KB
testcase_12 AC 125 ms
41,064 KB
testcase_13 AC 127 ms
41,040 KB
testcase_14 AC 113 ms
40,072 KB
testcase_15 AC 124 ms
40,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
 
public class Main {
	public static void main(String[] args) {
 
		Scanner sc  = new Scanner(System.in);

		int o= 0 ,p = 0,q = 0;

int a = Integer.parseInt(sc.next());
int b = Integer.parseInt(sc.next());
int c = Integer.parseInt(sc.next());
int d = Integer.parseInt(sc.next());
//	    int[] test  = new int[100000];
//      char[] c1 = s1.toCharArray();
/*
        while(true){
            test[o] = Integer.parseInt(sc.next());
            o++;
            if(o==s)break;
        }
*/
        if(a==1)o++;
        if(b==1)o++;
        if(c==1)o++;
        if(d==1)o-=5;
        
        if(o>1)System.out.print("DEAD");
        else System.out.print("SURVIVED");
        System.out.println();
	}
}
0