結果

問題 No.85 TVザッピング(1)
ユーザー k_kadorak_kadora
提出日時 2015-06-19 21:59:35
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 307 bytes
コンパイル時間 4,235 ms
コンパイル使用メモリ 74,404 KB
実行使用メモリ 54,404 KB
最終ジャッジ日時 2024-07-07 03:59:43
合計ジャッジ時間 9,835 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,064 KB
testcase_01 AC 130 ms
54,056 KB
testcase_02 AC 125 ms
54,072 KB
testcase_03 AC 126 ms
53,900 KB
testcase_04 AC 125 ms
53,856 KB
testcase_05 AC 124 ms
53,992 KB
testcase_06 AC 124 ms
53,828 KB
testcase_07 AC 128 ms
54,404 KB
testcase_08 AC 126 ms
54,048 KB
testcase_09 AC 120 ms
54,084 KB
testcase_10 AC 110 ms
52,936 KB
testcase_11 AC 124 ms
53,700 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 112 ms
52,996 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 125 ms
54,000 KB
testcase_18 WA -
testcase_19 AC 120 ms
53,664 KB
testcase_20 AC 123 ms
53,936 KB
testcase_21 AC 128 ms
53,912 KB
testcase_22 AC 124 ms
54,316 KB
testcase_23 AC 126 ms
53,928 KB
testcase_24 AC 120 ms
54,060 KB
testcase_25 AC 119 ms
54,028 KB
testcase_26 AC 129 ms
54,228 KB
testcase_27 AC 113 ms
52,664 KB
testcase_28 AC 121 ms
53,880 KB
testcase_29 AC 129 ms
54,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Yuki85{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,m,c;
		n = sc.nextInt();
		m = sc.nextInt();
		c = sc.nextInt();
		if(n % 2 == 0 || m % 2 == 0){
			System.out.println("YES");
		}else{
			System.out.println("NO");
		}
	}
}
0