結果

問題 No.85 TVザッピング(1)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-05 02:13:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 405 bytes
コンパイル時間 2,025 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 56,092 KB
最終ジャッジ日時 2024-07-01 02:20:18
合計ジャッジ時間 7,163 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
53,796 KB
testcase_01 AC 132 ms
54,188 KB
testcase_02 AC 132 ms
54,108 KB
testcase_03 AC 132 ms
54,240 KB
testcase_04 AC 135 ms
54,112 KB
testcase_05 AC 135 ms
54,224 KB
testcase_06 AC 135 ms
53,968 KB
testcase_07 AC 134 ms
53,852 KB
testcase_08 AC 133 ms
53,964 KB
testcase_09 AC 135 ms
54,012 KB
testcase_10 AC 132 ms
54,024 KB
testcase_11 AC 134 ms
53,960 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 133 ms
54,080 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 134 ms
54,092 KB
testcase_18 WA -
testcase_19 AC 136 ms
54,168 KB
testcase_20 AC 136 ms
54,060 KB
testcase_21 AC 136 ms
54,236 KB
testcase_22 AC 132 ms
54,220 KB
testcase_23 AC 131 ms
53,992 KB
testcase_24 AC 134 ms
54,172 KB
testcase_25 AC 132 ms
53,904 KB
testcase_26 AC 135 ms
53,992 KB
testcase_27 AC 132 ms
53,752 KB
testcase_28 AC 136 ms
53,940 KB
testcase_29 AC 133 ms
53,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int M = scan.nextInt();
		int C = scan.nextInt();
		scan.close();
		if(N == 1 && M == 1 && C == 1) {
			System.out.println("YES");
		}else if(N % 2 == 1 && M % 2 == 1) {
			System.out.println("NO");
		}else {
			System.out.println("YES");
		}
	}
}
0