結果

問題 No.85 TVザッピング(1)
ユーザー kenji_shioyakenji_shioya
提出日時 2016-06-29 04:45:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 5,000 ms
コード長 459 bytes
コンパイル時間 3,026 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 54,668 KB
最終ジャッジ日時 2024-10-04 17:59:40
合計ジャッジ時間 7,517 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
54,104 KB
testcase_01 AC 115 ms
53,812 KB
testcase_02 AC 106 ms
53,000 KB
testcase_03 AC 115 ms
54,104 KB
testcase_04 AC 109 ms
53,508 KB
testcase_05 AC 107 ms
53,164 KB
testcase_06 AC 114 ms
53,836 KB
testcase_07 AC 117 ms
53,856 KB
testcase_08 AC 103 ms
53,012 KB
testcase_09 AC 117 ms
53,984 KB
testcase_10 AC 105 ms
52,732 KB
testcase_11 AC 115 ms
53,888 KB
testcase_12 AC 119 ms
54,176 KB
testcase_13 AC 118 ms
53,664 KB
testcase_14 AC 118 ms
54,228 KB
testcase_15 AC 122 ms
54,152 KB
testcase_16 AC 122 ms
54,004 KB
testcase_17 AC 120 ms
53,956 KB
testcase_18 AC 116 ms
54,204 KB
testcase_19 AC 121 ms
53,880 KB
testcase_20 AC 122 ms
54,112 KB
testcase_21 AC 127 ms
54,084 KB
testcase_22 AC 114 ms
54,164 KB
testcase_23 AC 108 ms
54,668 KB
testcase_24 AC 119 ms
53,876 KB
testcase_25 AC 104 ms
52,984 KB
testcase_26 AC 122 ms
54,152 KB
testcase_27 AC 121 ms
54,088 KB
testcase_28 AC 117 ms
53,992 KB
testcase_29 AC 117 ms
53,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise138{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int n = sc.nextInt();
    int m = sc.nextInt();
    int c = sc.nextInt();

    if(n == 1 && m > 2){
      System.out.println("NO");
    }else if(m == 1 && n > 2){
      System.out.println("NO");
    }else if(n % 2 == 1 && m % 2 == 1){
      System.out.println("NO");
    }else{
      System.out.println("YES");
    }
  }
}
0