結果

問題 No.85 TVザッピング(1)
ユーザー kou6839kou6839
提出日時 2014-12-09 15:05:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 2,171 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 41,640 KB
最終ジャッジ日時 2024-10-04 17:14:31
合計ジャッジ時間 5,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
39,780 KB
testcase_01 AC 110 ms
41,080 KB
testcase_02 AC 98 ms
40,324 KB
testcase_03 AC 107 ms
40,980 KB
testcase_04 AC 107 ms
40,956 KB
testcase_05 AC 98 ms
39,912 KB
testcase_06 AC 100 ms
39,980 KB
testcase_07 AC 108 ms
41,052 KB
testcase_08 AC 109 ms
40,968 KB
testcase_09 AC 113 ms
41,560 KB
testcase_10 AC 106 ms
39,920 KB
testcase_11 AC 114 ms
41,048 KB
testcase_12 AC 113 ms
41,180 KB
testcase_13 AC 105 ms
40,044 KB
testcase_14 AC 112 ms
41,400 KB
testcase_15 AC 106 ms
41,068 KB
testcase_16 AC 106 ms
40,864 KB
testcase_17 AC 99 ms
40,260 KB
testcase_18 AC 109 ms
41,340 KB
testcase_19 AC 105 ms
41,064 KB
testcase_20 AC 98 ms
39,796 KB
testcase_21 AC 109 ms
40,808 KB
testcase_22 AC 110 ms
41,084 KB
testcase_23 AC 96 ms
39,836 KB
testcase_24 AC 108 ms
41,280 KB
testcase_25 AC 113 ms
41,180 KB
testcase_26 AC 99 ms
40,196 KB
testcase_27 AC 110 ms
41,196 KB
testcase_28 AC 106 ms
41,640 KB
testcase_29 AC 103 ms
40,340 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==1&&m==2) || (m==1&&n==2) ) {
        	System.out.println("YES");
        	return;
        }
        if( (n%2==0 || m%2==0)&&(n>1&&m>1) ){
        	System.out.println("YES");
        	return;
        }
        System.out.println("NO");
    }
}		
0