結果

問題 No.969 じゃんけん
ユーザー nogisunnogisun
提出日時 2020-03-23 17:41:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 3,278 ms
コンパイル使用メモリ 71,732 KB
実行使用メモリ 56,132 KB
最終ジャッジ日時 2023-08-27 05:01:00
合計ジャッジ時間 4,869 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
55,800 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 126 ms
55,812 KB
testcase_04 WA -
testcase_05 AC 127 ms
55,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class No969{
    public static void main(String[] args){
        Scanner sc = new Scanner(System.in);
        int str = sc.nextInt();
        if (str == 0 && str == 4 && str == 10){
            System.out.println("Yes");
        } else {
            System.out.println("No");
        }
    }
}
0