結果

問題 No.85 TVザッピング(1)
ユーザー Pump0129Pump0129
提出日時 2018-11-28 17:10:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 135 ms / 5,000 ms
コード長 606 bytes
コンパイル時間 2,227 ms
コンパイル使用メモリ 74,412 KB
実行使用メモリ 41,616 KB
最終ジャッジ日時 2024-06-26 22:58:14
合計ジャッジ時間 6,616 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,240 KB
testcase_01 AC 115 ms
40,576 KB
testcase_02 AC 110 ms
40,116 KB
testcase_03 AC 120 ms
41,352 KB
testcase_04 AC 123 ms
41,196 KB
testcase_05 AC 118 ms
40,932 KB
testcase_06 AC 125 ms
41,360 KB
testcase_07 AC 125 ms
41,216 KB
testcase_08 AC 125 ms
41,192 KB
testcase_09 AC 112 ms
40,040 KB
testcase_10 AC 112 ms
40,244 KB
testcase_11 AC 126 ms
41,600 KB
testcase_12 AC 135 ms
41,616 KB
testcase_13 AC 127 ms
41,528 KB
testcase_14 AC 123 ms
41,512 KB
testcase_15 AC 111 ms
40,060 KB
testcase_16 AC 117 ms
40,916 KB
testcase_17 AC 122 ms
41,216 KB
testcase_18 AC 110 ms
39,916 KB
testcase_19 AC 125 ms
41,576 KB
testcase_20 AC 128 ms
41,168 KB
testcase_21 AC 125 ms
41,092 KB
testcase_22 AC 123 ms
41,212 KB
testcase_23 AC 126 ms
41,432 KB
testcase_24 AC 123 ms
41,120 KB
testcase_25 AC 125 ms
41,524 KB
testcase_26 AC 124 ms
41,140 KB
testcase_27 AC 124 ms
41,396 KB
testcase_28 AC 126 ms
41,396 KB
testcase_29 AC 125 ms
41,060 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 {
            if (pos_x == 2 || pos_y == 2) {
                System.out.println("YES");
            } else {
                System.out.println("NO");
            }
        }
    }
}
0