結果

問題 No.85 TVザッピング(1)
ユーザー spaciaspacia
提出日時 2016-01-20 14:56:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 585 bytes
コンパイル時間 2,307 ms
コンパイル使用メモリ 73,916 KB
実行使用メモリ 37,076 KB
最終ジャッジ日時 2024-10-04 17:47:16
合計ジャッジ時間 4,082 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
36,988 KB
testcase_01 AC 47 ms
36,824 KB
testcase_02 AC 47 ms
36,928 KB
testcase_03 AC 47 ms
37,032 KB
testcase_04 AC 48 ms
36,912 KB
testcase_05 AC 48 ms
37,040 KB
testcase_06 AC 47 ms
37,032 KB
testcase_07 AC 47 ms
36,848 KB
testcase_08 AC 47 ms
36,856 KB
testcase_09 AC 47 ms
37,036 KB
testcase_10 AC 48 ms
36,936 KB
testcase_11 AC 46 ms
37,016 KB
testcase_12 AC 46 ms
36,908 KB
testcase_13 AC 49 ms
37,068 KB
testcase_14 AC 47 ms
36,880 KB
testcase_15 AC 46 ms
37,016 KB
testcase_16 AC 46 ms
36,988 KB
testcase_17 AC 51 ms
36,696 KB
testcase_18 AC 51 ms
36,816 KB
testcase_19 AC 47 ms
36,876 KB
testcase_20 AC 49 ms
37,076 KB
testcase_21 AC 52 ms
36,960 KB
testcase_22 AC 51 ms
36,596 KB
testcase_23 AC 51 ms
37,020 KB
testcase_24 AC 49 ms
36,988 KB
testcase_25 AC 48 ms
37,028 KB
testcase_26 AC 50 ms
36,684 KB
testcase_27 AC 49 ms
36,932 KB
testcase_28 AC 46 ms
36,848 KB
testcase_29 AC 46 ms
37,044 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 boolean solve (int n , int m) {
		if (n == 1 || m == 1) return n == 2 || m == 2;
		return n % 2 == 0 || m % 2 == 0;
	}
	
	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(solve(n ,m) ? "YES" : "NO");
	}
}
0