結果

問題 No.85 TVザッピング(1)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-19 11:53:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 560 bytes
コンパイル時間 2,559 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 54,532 KB
最終ジャッジ日時 2024-10-04 17:26:59
合計ジャッジ時間 8,260 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,136 KB
testcase_01 AC 154 ms
54,080 KB
testcase_02 AC 158 ms
54,232 KB
testcase_03 AC 155 ms
54,512 KB
testcase_04 AC 154 ms
54,140 KB
testcase_05 AC 154 ms
54,076 KB
testcase_06 AC 159 ms
53,952 KB
testcase_07 AC 151 ms
54,388 KB
testcase_08 AC 161 ms
53,840 KB
testcase_09 AC 156 ms
54,120 KB
testcase_10 AC 159 ms
53,908 KB
testcase_11 AC 155 ms
54,532 KB
testcase_12 AC 154 ms
54,172 KB
testcase_13 AC 158 ms
53,676 KB
testcase_14 AC 158 ms
54,268 KB
testcase_15 AC 157 ms
54,108 KB
testcase_16 AC 151 ms
54,392 KB
testcase_17 AC 155 ms
54,272 KB
testcase_18 AC 155 ms
54,356 KB
testcase_19 AC 158 ms
54,140 KB
testcase_20 AC 159 ms
54,012 KB
testcase_21 AC 155 ms
54,124 KB
testcase_22 AC 157 ms
54,188 KB
testcase_23 AC 156 ms
54,044 KB
testcase_24 AC 154 ms
54,460 KB
testcase_25 AC 159 ms
54,244 KB
testcase_26 AC 155 ms
54,156 KB
testcase_27 AC 154 ms
54,320 KB
testcase_28 AC 156 ms
54,112 KB
testcase_29 AC 156 ms
54,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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