結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
41,324 KB
testcase_01 AC 116 ms
41,412 KB
testcase_02 AC 116 ms
41,484 KB
testcase_03 AC 116 ms
41,224 KB
testcase_04 AC 102 ms
40,960 KB
testcase_05 AC 117 ms
40,896 KB
testcase_06 AC 116 ms
41,172 KB
testcase_07 AC 119 ms
41,308 KB
testcase_08 AC 118 ms
41,332 KB
testcase_09 WA -
testcase_10 AC 105 ms
41,124 KB
testcase_11 AC 113 ms
41,308 KB
testcase_12 AC 121 ms
41,136 KB
testcase_13 AC 125 ms
41,468 KB
testcase_14 WA -
testcase_15 AC 126 ms
40,920 KB
testcase_16 AC 117 ms
41,600 KB
testcase_17 AC 120 ms
41,260 KB
testcase_18 AC 122 ms
40,960 KB
testcase_19 AC 118 ms
41,272 KB
testcase_20 AC 112 ms
41,068 KB
testcase_21 AC 117 ms
41,272 KB
testcase_22 AC 106 ms
40,960 KB
testcase_23 AC 106 ms
41,132 KB
testcase_24 AC 119 ms
41,200 KB
testcase_25 AC 99 ms
41,032 KB
testcase_26 AC 119 ms
40,920 KB
testcase_27 AC 116 ms
41,072 KB
testcase_28 AC 106 ms
41,348 KB
testcase_29 AC 117 ms
41,392 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