結果

問題 No.84 悪の算盤
ユーザー kano_townkano_town
提出日時 2014-12-05 20:45:02
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 280 bytes
コンパイル時間 3,742 ms
コンパイル使用メモリ 74,544 KB
実行使用メモリ 54,460 KB
最終ジャッジ日時 2024-06-11 15:46:22
合計ジャッジ時間 5,956 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,368 KB
testcase_01 AC 115 ms
41,504 KB
testcase_02 AC 118 ms
40,316 KB
testcase_03 AC 114 ms
41,652 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 105 ms
41,324 KB
testcase_08 AC 117 ms
41,476 KB
testcase_09 AC 117 ms
41,256 KB
testcase_10 AC 115 ms
41,212 KB
testcase_11 AC 120 ms
41,404 KB
testcase_12 AC 117 ms
41,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Yukicoder84 {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long R = sc.nextLong(), C = sc.nextLong();
		long b = R % 2 == 0 || C % 2 == 0 ? 1 : 0;
		System.out.println(R * C / 2L - b);
	}
}
0