結果

問題 No.85 TVザッピング(1)
ユーザー kou6839kou6839
提出日時 2014-12-09 15:04:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 507 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 74,356 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-06-11 18:54:24
合計ジャッジ時間 6,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
53,116 KB
testcase_01 AC 103 ms
53,016 KB
testcase_02 AC 112 ms
54,040 KB
testcase_03 AC 110 ms
54,044 KB
testcase_04 AC 110 ms
54,152 KB
testcase_05 AC 108 ms
53,896 KB
testcase_06 AC 114 ms
53,900 KB
testcase_07 AC 116 ms
54,292 KB
testcase_08 AC 118 ms
54,040 KB
testcase_09 AC 101 ms
53,032 KB
testcase_10 AC 113 ms
54,136 KB
testcase_11 AC 102 ms
53,068 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 100 ms
53,076 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 104 ms
52,968 KB
testcase_18 WA -
testcase_19 AC 111 ms
53,928 KB
testcase_20 AC 101 ms
52,708 KB
testcase_21 AC 113 ms
54,204 KB
testcase_22 AC 107 ms
53,008 KB
testcase_23 AC 103 ms
53,232 KB
testcase_24 AC 104 ms
52,772 KB
testcase_25 AC 115 ms
54,248 KB
testcase_26 AC 106 ms
52,896 KB
testcase_27 AC 104 ms
52,764 KB
testcase_28 AC 98 ms
53,060 KB
testcase_29 AC 99 ms
52,972 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){
        	System.out.println("YES");
        	return;
        }
        System.out.println("NO");
    }
}			
0