結果
問題 | No.431 死亡フラグ |
ユーザー | yui |
提出日時 | 2017-02-20 11:22:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 414 bytes |
コンパイル時間 | 2,393 ms |
コンパイル使用メモリ | 74,276 KB |
実行使用メモリ | 54,356 KB |
最終ジャッジ日時 | 2024-06-09 14:48:02 |
合計ジャッジ時間 | 4,370 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 112 ms
54,356 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 101 ms
53,048 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 113 ms
53,864 KB |
testcase_09 | WA | - |
testcase_10 | AC | 100 ms
52,968 KB |
testcase_11 | AC | 100 ms
52,968 KB |
testcase_12 | AC | 97 ms
54,184 KB |
testcase_13 | WA | - |
testcase_14 | AC | 112 ms
53,876 KB |
testcase_15 | AC | 112 ms
54,108 KB |
ソースコード
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int fl1 = sc.nextInt(); int fl2 = sc.nextInt(); int fl3 = sc.nextInt(); int fl4 = sc.nextInt(); int count = fl1+fl2+fl3; if((fl4==1)||(count>=2)){ System.out.println("SURVIVED"); }else{ System.out.println("DEAD"); } } }