結果

問題 No.85 TVザッピング(1)
ユーザー tsunabittsunabit
提出日時 2020-02-01 15:47:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 5,000 ms
コード長 416 bytes
コンパイル時間 3,293 ms
コンパイル使用メモリ 76,720 KB
実行使用メモリ 41,796 KB
最終ジャッジ日時 2024-09-18 20:04:34
合計ジャッジ時間 8,506 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,508 KB
testcase_01 AC 129 ms
41,240 KB
testcase_02 AC 130 ms
41,424 KB
testcase_03 AC 129 ms
41,328 KB
testcase_04 AC 132 ms
41,208 KB
testcase_05 AC 131 ms
41,508 KB
testcase_06 AC 132 ms
41,468 KB
testcase_07 AC 131 ms
41,272 KB
testcase_08 AC 133 ms
41,796 KB
testcase_09 AC 130 ms
41,352 KB
testcase_10 AC 134 ms
41,296 KB
testcase_11 AC 131 ms
41,164 KB
testcase_12 AC 134 ms
41,584 KB
testcase_13 AC 123 ms
40,136 KB
testcase_14 AC 133 ms
41,452 KB
testcase_15 AC 128 ms
41,164 KB
testcase_16 AC 129 ms
41,592 KB
testcase_17 AC 131 ms
40,976 KB
testcase_18 AC 131 ms
41,508 KB
testcase_19 AC 133 ms
41,152 KB
testcase_20 AC 131 ms
41,424 KB
testcase_21 AC 130 ms
41,540 KB
testcase_22 AC 130 ms
41,544 KB
testcase_23 AC 132 ms
41,416 KB
testcase_24 AC 135 ms
41,508 KB
testcase_25 AC 138 ms
41,524 KB
testcase_26 AC 130 ms
41,404 KB
testcase_27 AC 132 ms
41,340 KB
testcase_28 AC 133 ms
41,412 KB
testcase_29 AC 129 ms
41,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No85 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int c = sc.nextInt();
		String ans = "NO";
		
		if(n == 1 && m == 2) ans = "YES";
		if(n == 2 && m == 1) ans = "YES";
		if(n * m % 2 == 0 && n != 1 && m != 1) ans = "YES";
		
		System.out.println(ans);
	}
}
0