結果
問題 | No.969 じゃんけん |
ユーザー | N_Gakuto7 |
提出日時 | 2020-04-02 22:14:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 488 bytes |
コンパイル時間 | 2,087 ms |
コンパイル使用メモリ | 74,060 KB |
実行使用メモリ | 41,616 KB |
最終ジャッジ日時 | 2024-06-28 15:20:51 |
合計ジャッジ時間 | 3,330 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 113 ms
39,900 KB |
testcase_01 | AC | 122 ms
41,508 KB |
testcase_02 | WA | - |
testcase_03 | AC | 122 ms
41,616 KB |
testcase_04 | WA | - |
testcase_05 | AC | 130 ms
40,976 KB |
ソースコード
import java.util.*; class Main{ public static void main(String[] args) { try(Scanner sc = new Scanner(System.in)){ int num = Integer.parseInt(sc.next()); if(num == 0) System.out.println("Yes"); if(num == 4) System.out.println("Yes"); if(num == 10) System.out.println("Yes"); else System.out.println("No"); }catch(Exception e){ e.printStackTrace(); } } }