結果

問題 No.85 TVザッピング(1)
ユーザー atkrymatkrym
提出日時 2016-10-25 22:10:11
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 501 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 41,532 KB
最終ジャッジ日時 2024-05-03 06:03:42
合計ジャッジ時間 7,276 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
40,984 KB
testcase_01 AC 131 ms
41,340 KB
testcase_02 AC 133 ms
41,332 KB
testcase_03 AC 119 ms
40,488 KB
testcase_04 AC 121 ms
40,380 KB
testcase_05 AC 130 ms
41,304 KB
testcase_06 AC 121 ms
40,560 KB
testcase_07 AC 131 ms
41,436 KB
testcase_08 AC 117 ms
40,040 KB
testcase_09 WA -
testcase_10 AC 135 ms
41,188 KB
testcase_11 AC 136 ms
41,164 KB
testcase_12 AC 132 ms
41,172 KB
testcase_13 AC 121 ms
40,220 KB
testcase_14 WA -
testcase_15 AC 117 ms
39,968 KB
testcase_16 AC 130 ms
41,436 KB
testcase_17 AC 134 ms
41,456 KB
testcase_18 AC 131 ms
41,224 KB
testcase_19 AC 115 ms
39,792 KB
testcase_20 AC 119 ms
39,872 KB
testcase_21 AC 129 ms
41,084 KB
testcase_22 AC 127 ms
41,108 KB
testcase_23 AC 128 ms
41,160 KB
testcase_24 AC 133 ms
41,372 KB
testcase_25 AC 130 ms
41,304 KB
testcase_26 AC 135 ms
41,296 KB
testcase_27 AC 128 ms
41,216 KB
testcase_28 AC 118 ms
39,952 KB
testcase_29 AC 119 ms
40,108 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) {
            System.out.println("NO");
        } else if (n%2!=0) {
            System.out.println("NO");
        } else {
            System.out.println("YES");
        }
    }
}
0