結果

問題 No.969 じゃんけん
ユーザー ParSA
提出日時 2020-01-17 21:24:34
言語 Java
(openjdk 23)
結果
AC  
実行時間 127 ms / 2,000 ms
コード長 351 bytes
コンパイル時間 1,924 ms
コンパイル使用メモリ 73,944 KB
実行使用メモリ 54,320 KB
最終ジャッジ日時 2024-06-25 18:30:28
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner stdIn = new Scanner(System.in);
		int x = stdIn.nextInt();
		
		int g = 0;
		int c = 2;
		int p = 5;
		
		boolean flag = false;
		
		if(x == 0 || x == 4 || x== 10) {
			System.out.println("Yes");
		}else {
			System.out.println("No");
		}
		
		
	}

}
0