結果

問題 No.969 じゃんけん
ユーザー masa_ahemasa_ahe
提出日時 2020-03-12 13:32:13
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 217 bytes
コンパイル時間 3,091 ms
コンパイル使用メモリ 77,240 KB
実行使用メモリ 41,388 KB
最終ジャッジ日時 2024-11-17 19:03:02
合計ジャッジ時間 3,821 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 122 ms
41,192 KB
testcase_02 AC 122 ms
40,916 KB
testcase_03 AC 126 ms
41,232 KB
testcase_04 AC 126 ms
41,240 KB
testcase_05 AC 124 ms
40,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int x=sc.nextInt();
		if(x%2==0)System.out.println("Yes");
		else System.out.println("No");
	}
}
0