結果

問題 No.85 TVザッピング(1)
ユーザー k_kadorak_kadora
提出日時 2015-06-19 22:06:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 449 bytes
コンパイル時間 3,979 ms
コンパイル使用メモリ 74,472 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-10-04 17:30:47
合計ジャッジ時間 8,257 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
41,452 KB
testcase_01 AC 116 ms
39,924 KB
testcase_02 AC 129 ms
41,112 KB
testcase_03 AC 129 ms
41,240 KB
testcase_04 AC 127 ms
41,240 KB
testcase_05 AC 126 ms
41,148 KB
testcase_06 AC 127 ms
41,324 KB
testcase_07 AC 127 ms
41,072 KB
testcase_08 AC 128 ms
41,240 KB
testcase_09 AC 127 ms
41,468 KB
testcase_10 AC 128 ms
41,136 KB
testcase_11 AC 132 ms
41,176 KB
testcase_12 AC 128 ms
41,176 KB
testcase_13 AC 114 ms
39,888 KB
testcase_14 AC 129 ms
41,160 KB
testcase_15 AC 128 ms
41,076 KB
testcase_16 AC 128 ms
41,056 KB
testcase_17 AC 114 ms
40,112 KB
testcase_18 AC 128 ms
41,088 KB
testcase_19 AC 127 ms
41,068 KB
testcase_20 AC 128 ms
41,204 KB
testcase_21 AC 131 ms
41,292 KB
testcase_22 AC 129 ms
41,168 KB
testcase_23 AC 132 ms
41,160 KB
testcase_24 AC 129 ms
41,260 KB
testcase_25 AC 129 ms
41,052 KB
testcase_26 AC 127 ms
40,964 KB
testcase_27 AC 129 ms
41,280 KB
testcase_28 AC 116 ms
40,032 KB
testcase_29 AC 127 ms
41,472 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,res;
		n = sc.nextInt();
		m = sc.nextInt();
		c = sc.nextInt();
		res = n*m;
		if(res % 2 == 0){
			if(res == 2){
				System.out.println("YES");
			}else{
				if(n!=1 && m != 1){
					System.out.println("YES");
				}else{
					System.out.println("NO");
				}
			}
		}else{
			System.out.println("NO");
		}
	}
}
0