結果

問題 No.431 死亡フラグ
ユーザー takeya_okinotakeya_okino
提出日時 2017-06-19 20:40:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 2,000 ms
コード長 349 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 74,272 KB
実行使用メモリ 41,740 KB
最終ジャッジ日時 2024-10-02 07:50:28
合計ジャッジ時間 4,867 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,228 KB
testcase_01 AC 128 ms
41,420 KB
testcase_02 AC 132 ms
41,284 KB
testcase_03 AC 129 ms
41,740 KB
testcase_04 AC 128 ms
41,404 KB
testcase_05 AC 128 ms
41,396 KB
testcase_06 AC 129 ms
41,476 KB
testcase_07 AC 129 ms
41,168 KB
testcase_08 AC 130 ms
41,392 KB
testcase_09 AC 131 ms
41,144 KB
testcase_10 AC 130 ms
41,024 KB
testcase_11 AC 128 ms
41,044 KB
testcase_12 AC 128 ms
41,456 KB
testcase_13 AC 133 ms
41,304 KB
testcase_14 AC 131 ms
41,244 KB
testcase_15 AC 131 ms
41,588 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int d1 = sc.nextInt();
    int d2 = sc.nextInt();
    int d3 = sc.nextInt();
    int s = sc.nextInt();
    String ans = "SURVIVED";
    if((s == 0) && (d1 + d2 + d3 >= 2)) ans = "DEAD";
    System.out.println(ans);
  }
}
0