結果

問題 No.84 悪の算盤
ユーザー kou6839kou6839
提出日時 2014-12-04 11:41:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 421 bytes
コンパイル時間 2,318 ms
コンパイル使用メモリ 75,376 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-06-11 14:45:27
合計ジャッジ時間 4,532 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
40,136 KB
testcase_01 AC 110 ms
41,376 KB
testcase_02 AC 125 ms
41,244 KB
testcase_03 AC 125 ms
41,412 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 125 ms
41,336 KB
testcase_08 AC 125 ms
41,424 KB
testcase_09 AC 125 ms
41,284 KB
testcase_10 AC 124 ms
41,156 KB
testcase_11 AC 124 ms
41,676 KB
testcase_12 AC 128 ms
41,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String n=sc.next();
		String k=sc.next();
		BigDecimal a = new BigDecimal(n);
		BigDecimal b = new BigDecimal(k);
		a = a.multiply(b);
		a=a.divide(new BigDecimal(2),0,BigDecimal.ROUND_CEILING);
		System.out.println(a.subtract(new BigDecimal(1)));
		
		
	}
}	
0