結果

問題 No.85 TVザッピング(1)
ユーザー kanra661kanra661
提出日時 2014-12-09 22:20:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 438 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,416 KB
実行使用メモリ 41,708 KB
最終ジャッジ日時 2024-06-11 18:58:06
合計ジャッジ時間 7,195 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,452 KB
testcase_01 AC 128 ms
41,140 KB
testcase_02 AC 134 ms
41,300 KB
testcase_03 AC 122 ms
40,276 KB
testcase_04 AC 138 ms
41,304 KB
testcase_05 AC 139 ms
41,708 KB
testcase_06 AC 136 ms
41,224 KB
testcase_07 AC 136 ms
41,504 KB
testcase_08 AC 137 ms
41,192 KB
testcase_09 AC 137 ms
41,680 KB
testcase_10 AC 131 ms
41,328 KB
testcase_11 AC 135 ms
41,448 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 131 ms
41,412 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 135 ms
41,432 KB
testcase_18 WA -
testcase_19 AC 136 ms
41,568 KB
testcase_20 AC 136 ms
41,236 KB
testcase_21 AC 137 ms
41,708 KB
testcase_22 AC 138 ms
41,216 KB
testcase_23 AC 136 ms
41,428 KB
testcase_24 AC 137 ms
41,392 KB
testcase_25 AC 133 ms
41,284 KB
testcase_26 AC 135 ms
41,200 KB
testcase_27 AC 133 ms
41,292 KB
testcase_28 AC 136 ms
41,468 KB
testcase_29 AC 135 ms
41,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.*;
import java.util.*;

public class Main {
  public static void main(String[] args){
    Scanner sc = new Scanner(System.in);
    int n = sc.nextInt();
    int m = sc.nextInt();
    int k = sc.nextInt();
    if(n * m == 2){
      System.out.println("YES");
      return;
    }
    if(n % 2 == 0 || m % 2 == 0){
       System.out.println("YES");
       return;
    }
    System.out.println("NO");
  }
}
0