結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
53,968 KB
testcase_01 AC 131 ms
54,120 KB
testcase_02 AC 134 ms
53,836 KB
testcase_03 AC 133 ms
54,008 KB
testcase_04 AC 131 ms
54,140 KB
testcase_05 AC 130 ms
54,148 KB
testcase_06 AC 130 ms
53,956 KB
testcase_07 AC 133 ms
53,944 KB
testcase_08 AC 133 ms
54,004 KB
testcase_09 AC 132 ms
54,124 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 132 ms
54,124 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 133 ms
54,272 KB
testcase_20 AC 133 ms
54,140 KB
testcase_21 AC 134 ms
54,312 KB
testcase_22 AC 137 ms
53,884 KB
testcase_23 AC 133 ms
54,212 KB
testcase_24 AC 133 ms
54,156 KB
testcase_25 AC 137 ms
54,288 KB
testcase_26 AC 138 ms
53,876 KB
testcase_27 AC 137 ms
54,012 KB
testcase_28 AC 131 ms
54,200 KB
testcase_29 AC 132 ms
54,020 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("YES");
		}else {
			System.out.println((n%2==1&&m%2==1)?"NO":"YES");
		}
	}
}
0