結果

問題 No.85 TVザッピング(1)
ユーザー hhgfhn1hhgfhn1
提出日時 2018-12-19 01:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 378 bytes
コンパイル時間 2,052 ms
コンパイル使用メモリ 74,972 KB
実行使用メモリ 55,976 KB
最終ジャッジ日時 2024-09-25 07:52:09
合計ジャッジ時間 6,722 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 129 ms
54,056 KB
testcase_01 AC 129 ms
53,852 KB
testcase_02 AC 132 ms
54,228 KB
testcase_03 AC 131 ms
54,132 KB
testcase_04 AC 132 ms
54,048 KB
testcase_05 AC 116 ms
52,948 KB
testcase_06 AC 128 ms
53,752 KB
testcase_07 AC 128 ms
53,928 KB
testcase_08 AC 115 ms
53,052 KB
testcase_09 AC 127 ms
53,980 KB
testcase_10 AC 129 ms
54,100 KB
testcase_11 AC 115 ms
52,996 KB
testcase_12 AC 113 ms
52,944 KB
testcase_13 AC 114 ms
53,024 KB
testcase_14 AC 115 ms
52,732 KB
testcase_15 AC 129 ms
54,228 KB
testcase_16 AC 122 ms
54,252 KB
testcase_17 AC 128 ms
54,012 KB
testcase_18 AC 129 ms
53,956 KB
testcase_19 AC 126 ms
54,176 KB
testcase_20 AC 114 ms
52,988 KB
testcase_21 AC 125 ms
54,084 KB
testcase_22 AC 129 ms
53,988 KB
testcase_23 AC 128 ms
55,976 KB
testcase_24 AC 113 ms
53,052 KB
testcase_25 AC 126 ms
53,964 KB
testcase_26 AC 127 ms
54,280 KB
testcase_27 AC 115 ms
52,988 KB
testcase_28 AC 127 ms
53,864 KB
testcase_29 AC 127 ms
54,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int m=scanner.nextInt();
		int c=scanner.nextInt();
		if(n==1||m==1) {
			System.out.println(n*m==2?"YES":"NO");
		}else {
			System.out.println((n%2==1&&m%2==1)?"NO":"YES");
		}
	}
}
0