結果

問題 No.85 TVザッピング(1)
ユーザー syokeininsyokeinin
提出日時 2014-12-05 00:05:39
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 422 bytes
コンパイル時間 3,183 ms
コンパイル使用メモリ 74,352 KB
実行使用メモリ 54,108 KB
最終ジャッジ日時 2024-06-11 15:35:44
合計ジャッジ時間 8,015 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
41,408 KB
testcase_01 AC 128 ms
41,536 KB
testcase_02 AC 129 ms
41,020 KB
testcase_03 AC 129 ms
41,192 KB
testcase_04 AC 127 ms
41,140 KB
testcase_05 AC 127 ms
41,116 KB
testcase_06 AC 117 ms
40,048 KB
testcase_07 AC 123 ms
41,284 KB
testcase_08 AC 124 ms
41,324 KB
testcase_09 WA -
testcase_10 AC 129 ms
41,264 KB
testcase_11 AC 127 ms
41,256 KB
testcase_12 AC 129 ms
41,004 KB
testcase_13 AC 128 ms
41,244 KB
testcase_14 WA -
testcase_15 AC 128 ms
41,356 KB
testcase_16 AC 129 ms
41,368 KB
testcase_17 AC 116 ms
41,388 KB
testcase_18 AC 127 ms
41,472 KB
testcase_19 AC 124 ms
41,260 KB
testcase_20 AC 128 ms
41,284 KB
testcase_21 AC 127 ms
41,088 KB
testcase_22 AC 126 ms
41,508 KB
testcase_23 AC 125 ms
41,296 KB
testcase_24 AC 120 ms
40,252 KB
testcase_25 AC 124 ms
41,304 KB
testcase_26 AC 126 ms
41,316 KB
testcase_27 AC 127 ms
41,196 KB
testcase_28 AC 126 ms
41,056 KB
testcase_29 AC 128 ms
41,352 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("NO");
		}
		if(n == 1 || m == 1 || (n % 2 != 0) && (m % 2 != 0)){
			System.out.println("NO");
		}else{
			System.out.println("YES");
		}
		sc.close();
	}
}
0