結果

問題 No.431 死亡フラグ
ユーザー cande398cande398
提出日時 2017-10-08 15:06:29
言語 Java21
(openjdk 21)
結果
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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,856 KB
testcase_01 AC 134 ms
54,044 KB
testcase_02 AC 132 ms
53,832 KB
testcase_03 AC 134 ms
53,956 KB
testcase_04 AC 132 ms
53,804 KB
testcase_05 AC 133 ms
53,952 KB
testcase_06 AC 133 ms
53,940 KB
testcase_07 AC 135 ms
53,936 KB
testcase_08 AC 140 ms
53,868 KB
testcase_09 AC 131 ms
54,084 KB
testcase_10 AC 134 ms
53,820 KB
testcase_11 AC 134 ms
54,156 KB
testcase_12 AC 134 ms
53,876 KB
testcase_13 AC 136 ms
54,064 KB
testcase_14 AC 140 ms
54,032 KB
testcase_15 AC 135 ms
54,080 KB
権限があれば一括ダウンロードができます

ソースコード

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