結果

問題 No.84 悪の算盤
ユーザー spaciaspacia
提出日時 2016-01-17 22:15:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 55 ms / 5,000 ms
コード長 861 bytes
コンパイル時間 1,978 ms
コンパイル使用メモリ 75,148 KB
実行使用メモリ 37,244 KB
最終ジャッジ日時 2024-10-13 08:57:22
合計ジャッジ時間 3,662 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
37,192 KB
testcase_01 AC 54 ms
37,244 KB
testcase_02 AC 54 ms
37,012 KB
testcase_03 AC 53 ms
37,136 KB
testcase_04 AC 50 ms
37,204 KB
testcase_05 AC 52 ms
37,060 KB
testcase_06 AC 51 ms
37,084 KB
testcase_07 AC 50 ms
37,008 KB
testcase_08 AC 52 ms
37,100 KB
testcase_09 AC 52 ms
37,244 KB
testcase_10 AC 50 ms
37,132 KB
testcase_11 AC 49 ms
37,244 KB
testcase_12 AC 50 ms
36,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.math.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		String[] line = br.readLine().split(" ");
		BigInteger r = new BigInteger(line[0]);
		BigInteger c = new BigInteger(line[1]);
		BigInteger rc = r.multiply(c);
		BigInteger one = BigInteger.ONE;
		BigInteger two = BigInteger.valueOf(2);
		BigInteger four = BigInteger.valueOf(4);
		
		int f0 = r.compareTo(c);
		int f1 = rc.remainder(BigInteger.valueOf(2)).compareTo(BigInteger.ZERO);
		
		if (f0 == 0)
			out(f1 == 0 ? rc.divide(four).subtract(one) : rc.subtract(one).divide(four));
		else
			out(f1 == 0 ? rc.divide(two).subtract(one) : rc.subtract(one).divide(two));
	}
}
0