結果

問題 No.84 悪の算盤
ユーザー ぴろずぴろず
提出日時 2014-12-02 23:35:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 77,172 KB
実行使用メモリ 41,256 KB
最終ジャッジ日時 2024-06-11 07:44:30
合計ジャッジ時間 4,191 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,184 KB
testcase_01 AC 124 ms
40,932 KB
testcase_02 AC 116 ms
40,900 KB
testcase_03 AC 114 ms
41,100 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 114 ms
41,052 KB
testcase_08 AC 115 ms
40,748 KB
testcase_09 AC 130 ms
41,144 KB
testcase_10 AC 132 ms
41,120 KB
testcase_11 AC 131 ms
41,256 KB
testcase_12 AC 122 ms
41,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no084;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long r = sc.nextInt();
		long c = sc.nextInt();
		System.out.println(((r * c) + 1) / 2 - 1);
	}

}
0