結果

問題 No.445 得点
ユーザー tentententen
提出日時 2020-10-02 11:49:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 71,664 KB
実行使用メモリ 56,540 KB
最終ジャッジ日時 2023-09-22 13:08:12
合計ジャッジ時間 6,286 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
56,104 KB
testcase_01 AC 121 ms
56,000 KB
testcase_02 AC 121 ms
56,284 KB
testcase_03 AC 125 ms
56,220 KB
testcase_04 AC 124 ms
55,816 KB
testcase_05 AC 123 ms
56,172 KB
testcase_06 AC 121 ms
55,912 KB
testcase_07 AC 121 ms
55,748 KB
testcase_08 AC 122 ms
55,988 KB
testcase_09 AC 122 ms
56,000 KB
testcase_10 AC 121 ms
56,156 KB
testcase_11 AC 123 ms
55,744 KB
testcase_12 AC 122 ms
55,772 KB
testcase_13 AC 123 ms
56,124 KB
testcase_14 AC 121 ms
56,068 KB
testcase_15 AC 122 ms
56,476 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 121 ms
56,212 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();
        int b = sc.nextInt();
        int ans = 50 * a + (int)((50 * a) / (0.8 + 0.2 * b));
        System.out.println(ans);
    }
}
0