結果

問題 No.969 じゃんけん
ユーザー nogisunnogisun
提出日時 2020-03-23 17:41:57
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 326 bytes
コンパイル時間 3,152 ms
コンパイル使用メモリ 74,344 KB
実行使用メモリ 54,384 KB
最終ジャッジ日時 2024-06-08 00:57:28
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,296 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 128 ms
41,456 KB
testcase_04 WA -
testcase_05 AC 127 ms
41,476 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