結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,252 KB
testcase_01 AC 128 ms
41,436 KB
testcase_02 AC 129 ms
41,488 KB
testcase_03 AC 129 ms
41,328 KB
testcase_04 AC 130 ms
41,292 KB
testcase_05 AC 131 ms
41,528 KB
testcase_06 AC 130 ms
41,452 KB
testcase_07 AC 130 ms
41,380 KB
testcase_08 AC 119 ms
40,144 KB
testcase_09 WA -
testcase_10 AC 121 ms
40,080 KB
testcase_11 AC 131 ms
41,368 KB
testcase_12 AC 130 ms
41,384 KB
testcase_13 AC 129 ms
41,700 KB
testcase_14 WA -
testcase_15 AC 132 ms
41,304 KB
testcase_16 AC 131 ms
41,572 KB
testcase_17 AC 131 ms
41,592 KB
testcase_18 AC 131 ms
41,356 KB
testcase_19 AC 131 ms
41,356 KB
testcase_20 AC 129 ms
41,472 KB
testcase_21 AC 133 ms
41,628 KB
testcase_22 AC 129 ms
41,728 KB
testcase_23 AC 128 ms
41,520 KB
testcase_24 AC 129 ms
41,380 KB
testcase_25 AC 130 ms
41,560 KB
testcase_26 AC 132 ms
41,568 KB
testcase_27 AC 133 ms
41,192 KB
testcase_28 AC 133 ms
41,500 KB
testcase_29 AC 134 ms
41,636 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(m == 1 && n == 1){
			System.out.println("YES");
		}
		if(n == 1 || m == 1 || (n % 2 != 0) && (m % 2 != 0)){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
		sc.close();
	}
}
0