結果

問題 No.85 TVザッピング(1)
ユーザー chiho_miyakochiho_miyako
提出日時 2015-04-19 11:48:54
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 452 bytes
コンパイル時間 2,542 ms
コンパイル使用メモリ 74,476 KB
実行使用メモリ 41,516 KB
最終ジャッジ日時 2024-07-04 17:50:57
合計ジャッジ時間 7,053 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,964 KB
testcase_01 AC 114 ms
41,280 KB
testcase_02 AC 117 ms
41,404 KB
testcase_03 AC 114 ms
41,184 KB
testcase_04 AC 115 ms
41,232 KB
testcase_05 AC 121 ms
41,096 KB
testcase_06 AC 109 ms
40,156 KB
testcase_07 AC 115 ms
41,148 KB
testcase_08 AC 100 ms
40,136 KB
testcase_09 WA -
testcase_10 AC 112 ms
41,264 KB
testcase_11 AC 100 ms
39,968 KB
testcase_12 AC 116 ms
40,948 KB
testcase_13 AC 113 ms
41,004 KB
testcase_14 WA -
testcase_15 AC 111 ms
41,020 KB
testcase_16 AC 100 ms
40,152 KB
testcase_17 AC 105 ms
40,000 KB
testcase_18 AC 101 ms
39,408 KB
testcase_19 AC 117 ms
39,768 KB
testcase_20 AC 101 ms
40,188 KB
testcase_21 AC 108 ms
41,028 KB
testcase_22 AC 115 ms
41,292 KB
testcase_23 AC 111 ms
41,176 KB
testcase_24 AC 104 ms
39,896 KB
testcase_25 AC 108 ms
41,100 KB
testcase_26 AC 99 ms
39,732 KB
testcase_27 AC 115 ms
41,212 KB
testcase_28 AC 114 ms
40,900 KB
testcase_29 AC 100 ms
39,836 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){
            System.out.println("NO");
        }else{
            System.out.println("YES");
        }
    }
}
0