結果

問題 No.445 得点
ユーザー kumatakokumatako
提出日時 2016-12-07 01:19:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 809 bytes
コンパイル時間 1,809 ms
コンパイル使用メモリ 75,164 KB
実行使用メモリ 54,412 KB
最終ジャッジ日時 2024-06-29 21:17:04
合計ジャッジ時間 5,027 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
53,884 KB
testcase_01 AC 116 ms
54,360 KB
testcase_02 AC 115 ms
53,784 KB
testcase_03 AC 115 ms
54,128 KB
testcase_04 AC 116 ms
54,248 KB
testcase_05 AC 123 ms
53,948 KB
testcase_06 AC 104 ms
52,912 KB
testcase_07 AC 110 ms
54,412 KB
testcase_08 AC 116 ms
54,228 KB
testcase_09 AC 117 ms
54,208 KB
testcase_10 AC 105 ms
53,068 KB
testcase_11 AC 119 ms
54,076 KB
testcase_12 AC 103 ms
53,148 KB
testcase_13 AC 118 ms
53,884 KB
testcase_14 AC 121 ms
53,776 KB
testcase_15 AC 117 ms
54,156 KB
testcase_16 AC 120 ms
54,060 KB
testcase_17 AC 125 ms
53,912 KB
testcase_18 AC 120 ms
54,164 KB
testcase_19 AC 122 ms
53,852 KB
testcase_20 AC 120 ms
54,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

class Main{
    public static void main(String[]args)throws Exception{
        Scanner sc = new Scanner(System.in);
        int a,b;
        a = sc.nextInt();
        b = sc.nextInt();
        BigDecimal biga = new BigDecimal(a);
        BigDecimal bigb = new BigDecimal(b);
        BigDecimal ei = new BigDecimal("0.8");
        BigDecimal two = new BigDecimal("0.2");
        BigDecimal fif = new BigDecimal("50");
        BigDecimal good = two.multiply(bigb);
        BigDecimal great = ei.add(good);
        BigDecimal yeah = fif.multiply(biga);
        BigDecimal amazing = yeah.divide(great,0,BigDecimal.ROUND_FLOOR);
        BigDecimal answer = yeah.add(amazing);
        
        System.out.println(answer);
        
        
        
        
    }
}
0