結果

問題 No.85 TVザッピング(1)
ユーザー ぴろずぴろず
提出日時 2014-12-04 23:45:50
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 406 bytes
コンパイル時間 2,086 ms
コンパイル使用メモリ 74,584 KB
実行使用メモリ 54,340 KB
最終ジャッジ日時 2024-06-11 15:28:03
合計ジャッジ時間 5,928 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,412 KB
testcase_01 AC 97 ms
40,108 KB
testcase_02 AC 105 ms
41,132 KB
testcase_03 AC 107 ms
41,080 KB
testcase_04 AC 109 ms
40,996 KB
testcase_05 AC 98 ms
40,128 KB
testcase_06 AC 109 ms
41,428 KB
testcase_07 AC 108 ms
41,392 KB
testcase_08 AC 108 ms
41,084 KB
testcase_09 AC 115 ms
41,672 KB
testcase_10 AC 108 ms
41,280 KB
testcase_11 AC 107 ms
41,308 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 108 ms
41,148 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 100 ms
40,144 KB
testcase_18 WA -
testcase_19 AC 109 ms
41,156 KB
testcase_20 AC 114 ms
41,224 KB
testcase_21 AC 117 ms
41,300 KB
testcase_22 AC 100 ms
40,096 KB
testcase_23 AC 95 ms
40,100 KB
testcase_24 AC 98 ms
40,264 KB
testcase_25 AC 117 ms
41,284 KB
testcase_26 AC 124 ms
41,424 KB
testcase_27 AC 106 ms
41,436 KB
testcase_28 AC 98 ms
39,992 KB
testcase_29 AC 107 ms
41,180 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no085;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int c = sc.nextInt();
		System.out.println(solve(n,m,c) ? "YES" : "NO");
	}

	public static boolean solve(int n,int m,int c) {
		if ((n*m)%2==1) {
			return false;
		}
		return true;
	}

}
0