結果

問題 No.85 TVザッピング(1)
ユーザー syokeininsyokeinin
提出日時 2014-12-05 00:19:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 447 bytes
コンパイル時間 2,865 ms
コンパイル使用メモリ 75,136 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-10-04 17:13:50
合計ジャッジ時間 6,823 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 100 ms
39,808 KB
testcase_01 AC 118 ms
41,704 KB
testcase_02 AC 109 ms
40,800 KB
testcase_03 AC 98 ms
39,920 KB
testcase_04 AC 100 ms
40,256 KB
testcase_05 AC 111 ms
41,084 KB
testcase_06 AC 108 ms
41,004 KB
testcase_07 AC 99 ms
40,024 KB
testcase_08 AC 102 ms
40,044 KB
testcase_09 AC 106 ms
40,320 KB
testcase_10 AC 108 ms
41,088 KB
testcase_11 AC 105 ms
41,136 KB
testcase_12 AC 97 ms
40,152 KB
testcase_13 AC 106 ms
41,264 KB
testcase_14 AC 106 ms
40,840 KB
testcase_15 AC 98 ms
40,040 KB
testcase_16 AC 109 ms
41,044 KB
testcase_17 AC 98 ms
40,036 KB
testcase_18 AC 98 ms
39,820 KB
testcase_19 AC 102 ms
39,796 KB
testcase_20 AC 110 ms
41,308 KB
testcase_21 AC 94 ms
39,892 KB
testcase_22 AC 104 ms
41,176 KB
testcase_23 AC 97 ms
40,260 KB
testcase_24 AC 96 ms
40,304 KB
testcase_25 AC 96 ms
39,972 KB
testcase_26 AC 107 ms
41,216 KB
testcase_27 AC 105 ms
40,828 KB
testcase_28 AC 106 ms
41,496 KB
testcase_29 AC 108 ms
41,044 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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