結果

問題 No.85 TVザッピング(1)
ユーザー scachescache
提出日時 2014-12-04 23:36:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 465 bytes
コンパイル時間 3,418 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 41,520 KB
最終ジャッジ日時 2024-10-04 17:10:30
合計ジャッジ時間 8,545 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,144 KB
testcase_01 AC 130 ms
41,196 KB
testcase_02 AC 132 ms
41,376 KB
testcase_03 AC 130 ms
41,048 KB
testcase_04 AC 135 ms
41,492 KB
testcase_05 AC 130 ms
41,012 KB
testcase_06 AC 130 ms
41,092 KB
testcase_07 AC 129 ms
41,520 KB
testcase_08 AC 130 ms
41,352 KB
testcase_09 AC 115 ms
39,956 KB
testcase_10 AC 128 ms
41,072 KB
testcase_11 AC 128 ms
41,044 KB
testcase_12 AC 131 ms
41,396 KB
testcase_13 AC 130 ms
41,132 KB
testcase_14 AC 129 ms
41,416 KB
testcase_15 AC 130 ms
41,416 KB
testcase_16 AC 127 ms
41,284 KB
testcase_17 AC 128 ms
41,328 KB
testcase_18 AC 130 ms
41,240 KB
testcase_19 AC 114 ms
39,924 KB
testcase_20 AC 126 ms
41,364 KB
testcase_21 AC 127 ms
41,120 KB
testcase_22 AC 125 ms
41,316 KB
testcase_23 AC 127 ms
41,060 KB
testcase_24 AC 128 ms
41,336 KB
testcase_25 AC 129 ms
41,384 KB
testcase_26 AC 128 ms
41,096 KB
testcase_27 AC 116 ms
40,124 KB
testcase_28 AC 129 ms
41,088 KB
testcase_29 AC 130 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main85 {
	public static void main(String[] args) {
		Main85 p = new Main85();
	}

	public Main85() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int c = sc.nextInt();
		
		if((n==1 || m==1) && n*m>2)
			System.out.println("NO");
		else if((n*m)%2==0)
			System.out.println("YES");
		else
			System.out.println("NO");
	
	}

	public void solve() {
	}

}
0