結果

問題 No.85 TVザッピング(1)
ユーザー spaciaspacia
提出日時 2016-01-20 14:51:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 466 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 74,668 KB
実行使用メモリ 50,456 KB
最終ジャッジ日時 2024-09-21 14:47:28
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,540 KB
testcase_01 AC 53 ms
36,964 KB
testcase_02 AC 52 ms
36,788 KB
testcase_03 AC 51 ms
36,804 KB
testcase_04 AC 52 ms
37,108 KB
testcase_05 AC 52 ms
36,576 KB
testcase_06 AC 52 ms
37,036 KB
testcase_07 AC 53 ms
37,072 KB
testcase_08 AC 53 ms
36,780 KB
testcase_09 WA -
testcase_10 AC 54 ms
36,784 KB
testcase_11 AC 53 ms
36,688 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 54 ms
37,192 KB
testcase_18 WA -
testcase_19 AC 52 ms
36,548 KB
testcase_20 AC 52 ms
36,544 KB
testcase_21 AC 53 ms
37,064 KB
testcase_22 AC 52 ms
37,008 KB
testcase_23 AC 51 ms
36,972 KB
testcase_24 AC 53 ms
36,944 KB
testcase_25 AC 51 ms
36,984 KB
testcase_26 AC 52 ms
37,080 KB
testcase_27 AC 52 ms
36,784 KB
testcase_28 AC 54 ms
36,884 KB
testcase_29 AC 53 ms
37,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		
		int n = Integer.parseInt(line[0]);
		int m = Integer.parseInt(line[1]);
		
		out(n * m % 2 == 0 && n * m != 2 ? "YES" : "NO");
	}
}
0