結果

問題 No.85 TVザッピング(1)
ユーザー Pump0129Pump0129
提出日時 2018-11-28 15:58:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 476 bytes
コンパイル時間 1,944 ms
コンパイル使用メモリ 74,004 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-06-26 22:57:18
合計ジャッジ時間 6,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
53,868 KB
testcase_01 AC 109 ms
53,060 KB
testcase_02 AC 114 ms
53,792 KB
testcase_03 AC 111 ms
52,992 KB
testcase_04 AC 118 ms
54,044 KB
testcase_05 AC 119 ms
54,000 KB
testcase_06 AC 123 ms
53,960 KB
testcase_07 AC 123 ms
54,088 KB
testcase_08 AC 106 ms
52,856 KB
testcase_09 WA -
testcase_10 AC 122 ms
54,120 KB
testcase_11 AC 113 ms
53,012 KB
testcase_12 AC 124 ms
54,216 KB
testcase_13 AC 123 ms
54,240 KB
testcase_14 WA -
testcase_15 AC 114 ms
52,740 KB
testcase_16 AC 127 ms
54,060 KB
testcase_17 AC 123 ms
54,020 KB
testcase_18 AC 125 ms
54,116 KB
testcase_19 AC 119 ms
54,092 KB
testcase_20 AC 115 ms
53,904 KB
testcase_21 AC 118 ms
53,968 KB
testcase_22 AC 115 ms
52,880 KB
testcase_23 AC 117 ms
54,116 KB
testcase_24 AC 119 ms
54,072 KB
testcase_25 AC 128 ms
54,280 KB
testcase_26 AC 129 ms
54,104 KB
testcase_27 AC 126 ms
54,396 KB
testcase_28 AC 117 ms
53,088 KB
testcase_29 AC 122 ms
53,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package net.ipipip0129.yukicoder.no85;

import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        Scanner scan = new Scanner(System.in);
        int pos_x = scan.nextInt();
        int pos_y = scan.nextInt();

        if ((1 < pos_x && 1 < pos_y) &&
                (pos_x % 2 == 0 || pos_y % 2 == 0)) {
            System.out.println("YES");
        } else {
            System.out.println("NO");
        }
    }
}
0