結果

問題 No.431 死亡フラグ
ユーザー kenji_shioyakenji_shioya
提出日時 2016-10-22 19:51:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 139 ms / 2,000 ms
コード長 505 bytes
コンパイル時間 3,963 ms
コンパイル使用メモリ 74,428 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-11-23 17:40:39
合計ジャッジ時間 6,535 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
41,004 KB
testcase_01 AC 134 ms
41,408 KB
testcase_02 AC 135 ms
41,228 KB
testcase_03 AC 134 ms
41,284 KB
testcase_04 AC 133 ms
41,096 KB
testcase_05 AC 120 ms
40,044 KB
testcase_06 AC 134 ms
41,108 KB
testcase_07 AC 133 ms
41,308 KB
testcase_08 AC 136 ms
41,276 KB
testcase_09 AC 132 ms
41,460 KB
testcase_10 AC 132 ms
41,500 KB
testcase_11 AC 137 ms
41,516 KB
testcase_12 AC 134 ms
41,420 KB
testcase_13 AC 134 ms
41,368 KB
testcase_14 AC 139 ms
41,180 KB
testcase_15 AC 132 ms
41,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise155 {
  public static void main(String[] args){
    String sStr = "SURVIVED";
    String dStr = "DEAD";
    Scanner sc = new Scanner(System.in);

    int count = 0;
    for(int i = 0; i < 3; i++){
      if(sc.nextInt() == 1){
        count++;
      }
    }
    int s = sc.nextInt();
    if(s == 1){
      System.out.println(sStr);
    }else{
      if(count < 2){
        System.out.println(sStr);
      }else{
        System.out.println(dStr);
      }
    }
  }
}
0