結果

問題 No.85 TVザッピング(1)
ユーザー hhgfhn1hhgfhn1
提出日時 2018-12-19 01:17:53
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 365 bytes
コンパイル時間 1,920 ms
コンパイル使用メモリ 74,632 KB
実行使用メモリ 54,300 KB
最終ジャッジ日時 2024-09-25 07:52:01
合計ジャッジ時間 6,694 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,836 KB
testcase_01 AC 127 ms
54,240 KB
testcase_02 AC 125 ms
54,168 KB
testcase_03 AC 128 ms
53,876 KB
testcase_04 AC 111 ms
53,000 KB
testcase_05 AC 128 ms
53,968 KB
testcase_06 AC 127 ms
54,048 KB
testcase_07 AC 116 ms
53,036 KB
testcase_08 AC 114 ms
52,868 KB
testcase_09 WA -
testcase_10 AC 128 ms
54,268 KB
testcase_11 AC 128 ms
54,156 KB
testcase_12 AC 126 ms
53,848 KB
testcase_13 AC 129 ms
53,860 KB
testcase_14 WA -
testcase_15 AC 128 ms
54,300 KB
testcase_16 AC 128 ms
53,936 KB
testcase_17 AC 128 ms
54,136 KB
testcase_18 AC 126 ms
54,228 KB
testcase_19 AC 129 ms
53,896 KB
testcase_20 AC 127 ms
54,088 KB
testcase_21 AC 127 ms
53,892 KB
testcase_22 AC 117 ms
53,040 KB
testcase_23 AC 126 ms
54,220 KB
testcase_24 AC 125 ms
53,960 KB
testcase_25 AC 130 ms
53,988 KB
testcase_26 AC 131 ms
54,068 KB
testcase_27 AC 116 ms
53,064 KB
testcase_28 AC 129 ms
54,016 KB
testcase_29 AC 129 ms
53,924 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("NO");
		}else {
			System.out.println((n%2==1&&m%2==1)?"NO":"YES");
		}
	}
}
0