結果

問題 No.85 TVザッピング(1)
ユーザー syokeininsyokeinin
提出日時 2014-12-04 23:46:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 3,334 ms
コンパイル使用メモリ 74,364 KB
実行使用メモリ 41,492 KB
最終ジャッジ日時 2024-06-11 15:28:19
合計ジャッジ時間 8,228 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
41,132 KB
testcase_01 AC 131 ms
41,156 KB
testcase_02 AC 131 ms
41,232 KB
testcase_03 AC 119 ms
40,384 KB
testcase_04 AC 129 ms
41,240 KB
testcase_05 AC 129 ms
40,868 KB
testcase_06 AC 128 ms
41,200 KB
testcase_07 AC 132 ms
41,160 KB
testcase_08 AC 129 ms
41,140 KB
testcase_09 WA -
testcase_10 AC 114 ms
41,008 KB
testcase_11 AC 127 ms
41,300 KB
testcase_12 AC 128 ms
41,228 KB
testcase_13 AC 128 ms
41,352 KB
testcase_14 WA -
testcase_15 AC 113 ms
40,136 KB
testcase_16 AC 127 ms
41,172 KB
testcase_17 AC 129 ms
41,440 KB
testcase_18 AC 128 ms
41,316 KB
testcase_19 AC 126 ms
41,024 KB
testcase_20 AC 129 ms
41,112 KB
testcase_21 AC 120 ms
40,152 KB
testcase_22 AC 127 ms
41,224 KB
testcase_23 AC 129 ms
41,160 KB
testcase_24 AC 113 ms
40,040 KB
testcase_25 AC 127 ms
41,236 KB
testcase_26 AC 127 ms
41,492 KB
testcase_27 AC 128 ms
41,408 KB
testcase_28 AC 126 ms
41,336 KB
testcase_29 AC 111 ms
39,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class QQ5 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int c = sc.nextInt();
		if(n == 1 || m == 1 || (n % 2 != 0) && (m % 2 != 0)){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
		sc.close();
	}
}
0