結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,848 KB
testcase_01 AC 52 ms
36,696 KB
testcase_02 AC 53 ms
36,940 KB
testcase_03 AC 53 ms
37,068 KB
testcase_04 AC 54 ms
36,980 KB
testcase_05 AC 52 ms
37,036 KB
testcase_06 AC 52 ms
36,696 KB
testcase_07 AC 52 ms
36,696 KB
testcase_08 AC 53 ms
36,980 KB
testcase_09 WA -
testcase_10 AC 53 ms
36,784 KB
testcase_11 AC 53 ms
36,936 KB
testcase_12 AC 53 ms
37,044 KB
testcase_13 AC 53 ms
36,928 KB
testcase_14 WA -
testcase_15 AC 52 ms
36,572 KB
testcase_16 AC 51 ms
37,096 KB
testcase_17 AC 51 ms
37,000 KB
testcase_18 AC 53 ms
36,988 KB
testcase_19 AC 52 ms
37,000 KB
testcase_20 AC 51 ms
37,036 KB
testcase_21 AC 52 ms
37,056 KB
testcase_22 AC 52 ms
36,564 KB
testcase_23 AC 51 ms
36,968 KB
testcase_24 AC 52 ms
36,792 KB
testcase_25 AC 52 ms
36,700 KB
testcase_26 AC 53 ms
36,836 KB
testcase_27 AC 52 ms
36,848 KB
testcase_28 AC 52 ms
36,988 KB
testcase_29 AC 53 ms
37,028 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 != 1 && m != 1 ? "YES" : "NO");
	}
}
0