結果

問題 No.431 死亡フラグ
ユーザー cande398
提出日時 2017-10-08 15:06:29
言語 Java
(openjdk 23)
結果
AC  
実行時間 140 ms / 2,000 ms
コード長 442 bytes
コンパイル時間 4,340 ms
コンパイル使用メモリ 84,220 KB
実行使用メモリ 54,156 KB
最終ジャッジ日時 2024-11-17 05:32:00
合計ジャッジ時間 7,602 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 16
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int[] num = new int[4];
    int count = 0;
    for(int i=0;i<4;i++){
      num[i] = sc.nextInt();
      count += num[i];
    }
    if(num[3] == 1){
      System.out.println("SURVIVED");
    }
    else if(count>=2){
      System.out.println("DEAD");
    }
    else{
      System.out.println("SURVIVED");
    }
  }
}
0