結果

問題 No.85 TVザッピング(1)
ユーザー scachescache
提出日時 2014-12-04 23:31:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 408 bytes
コンパイル時間 3,360 ms
コンパイル使用メモリ 74,500 KB
実行使用メモリ 56,140 KB
最終ジャッジ日時 2024-06-11 15:22:48
合計ジャッジ時間 7,280 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,148 KB
testcase_01 AC 122 ms
41,184 KB
testcase_02 AC 122 ms
41,528 KB
testcase_03 AC 107 ms
40,228 KB
testcase_04 AC 101 ms
39,708 KB
testcase_05 AC 115 ms
41,180 KB
testcase_06 AC 107 ms
40,424 KB
testcase_07 AC 112 ms
41,176 KB
testcase_08 AC 124 ms
41,368 KB
testcase_09 AC 117 ms
41,668 KB
testcase_10 AC 101 ms
39,960 KB
testcase_11 AC 112 ms
41,104 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 101 ms
39,948 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 122 ms
41,128 KB
testcase_18 WA -
testcase_19 AC 112 ms
41,236 KB
testcase_20 AC 111 ms
41,096 KB
testcase_21 AC 110 ms
41,128 KB
testcase_22 AC 116 ms
41,160 KB
testcase_23 AC 113 ms
41,324 KB
testcase_24 AC 112 ms
41,108 KB
testcase_25 AC 112 ms
40,952 KB
testcase_26 AC 114 ms
41,348 KB
testcase_27 AC 115 ms
41,084 KB
testcase_28 AC 98 ms
39,856 KB
testcase_29 AC 103 ms
40,008 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*m)%2==0 || n*m<=2)
			System.out.println("YES");
		else
			System.out.println("NO");
	}

	public void solve() {
	}

}
0