結果

問題 No.85 TVザッピング(1)
ユーザー atkrymatkrym
提出日時 2016-10-25 22:11:23
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 5,000 ms
コード長 619 bytes
コンパイル時間 2,226 ms
コンパイル使用メモリ 74,524 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-10-04 18:03:45
合計ジャッジ時間 6,522 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
40,040 KB
testcase_01 AC 119 ms
41,336 KB
testcase_02 AC 113 ms
41,432 KB
testcase_03 AC 111 ms
41,296 KB
testcase_04 AC 118 ms
41,292 KB
testcase_05 AC 114 ms
41,164 KB
testcase_06 AC 102 ms
41,056 KB
testcase_07 AC 125 ms
41,368 KB
testcase_08 AC 122 ms
41,304 KB
testcase_09 AC 115 ms
41,060 KB
testcase_10 AC 122 ms
41,116 KB
testcase_11 AC 106 ms
40,968 KB
testcase_12 AC 96 ms
40,172 KB
testcase_13 AC 123 ms
41,324 KB
testcase_14 AC 105 ms
41,180 KB
testcase_15 AC 124 ms
41,156 KB
testcase_16 AC 106 ms
41,456 KB
testcase_17 AC 103 ms
41,352 KB
testcase_18 AC 115 ms
41,360 KB
testcase_19 AC 99 ms
41,224 KB
testcase_20 AC 114 ms
41,044 KB
testcase_21 AC 114 ms
41,088 KB
testcase_22 AC 121 ms
41,440 KB
testcase_23 AC 113 ms
41,368 KB
testcase_24 AC 115 ms
41,160 KB
testcase_25 AC 124 ms
41,432 KB
testcase_26 AC 114 ms
41,416 KB
testcase_27 AC 115 ms
40,236 KB
testcase_28 AC 112 ms
40,132 KB
testcase_29 AC 111 ms
40,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int x = sc.nextInt();
        int y = sc.nextInt();
        int c = sc.nextInt();
        int n = x*y;
        if (x == 1 || y == 1) {
            if (x == 2 || y == 2) {
                System.out.println("YES");
            } else {
                System.out.println("NO");
            }
        } else if (n%2!=0) {
            System.out.println("NO");
        } else {
            System.out.println("YES");
        }
    }
}
0