結果

問題 No.445 得点
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-09-08 23:20:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 561 bytes
コンパイル時間 3,216 ms
コンパイル使用メモリ 72,972 KB
実行使用メモリ 37,288 KB
最終ジャッジ日時 2024-11-07 06:36:08
合計ジャッジ時間 5,287 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
36,908 KB
testcase_01 AC 52 ms
36,588 KB
testcase_02 AC 53 ms
36,720 KB
testcase_03 AC 52 ms
36,920 KB
testcase_04 AC 53 ms
36,832 KB
testcase_05 AC 52 ms
36,556 KB
testcase_06 AC 53 ms
36,972 KB
testcase_07 AC 54 ms
37,116 KB
testcase_08 AC 54 ms
36,808 KB
testcase_09 AC 51 ms
36,564 KB
testcase_10 AC 52 ms
37,000 KB
testcase_11 AC 52 ms
37,108 KB
testcase_12 AC 52 ms
37,060 KB
testcase_13 AC 52 ms
36,548 KB
testcase_14 AC 53 ms
37,028 KB
testcase_15 AC 51 ms
36,888 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 51 ms
36,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class No445 {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        int A = Integer.parseInt(inputs[0]);
        int B = Integer.parseInt(inputs[1]);

        int answer = 50 * A + (int) Math.floor((50 * A) / (0.8 + 0.2 * B));

        System.out.println(answer);
    }
}
0