結果

問題 No.431 死亡フラグ
ユーザー darknightdarknight
提出日時 2016-10-14 22:28:19
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

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