結果

問題 No.445 得点
ユーザー tentententen
提出日時 2020-10-02 11:49:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 293 bytes
コンパイル時間 3,255 ms
コンパイル使用メモリ 77,148 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-07-08 04:52:15
合計ジャッジ時間 5,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
40,912 KB
testcase_01 AC 106 ms
40,976 KB
testcase_02 AC 111 ms
40,944 KB
testcase_03 AC 108 ms
40,932 KB
testcase_04 AC 107 ms
40,876 KB
testcase_05 AC 99 ms
40,072 KB
testcase_06 AC 107 ms
41,320 KB
testcase_07 AC 106 ms
41,144 KB
testcase_08 AC 101 ms
41,172 KB
testcase_09 AC 94 ms
39,736 KB
testcase_10 AC 103 ms
39,744 KB
testcase_11 AC 113 ms
40,580 KB
testcase_12 AC 107 ms
39,948 KB
testcase_13 AC 108 ms
40,776 KB
testcase_14 AC 102 ms
39,916 KB
testcase_15 AC 107 ms
41,108 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 100 ms
40,068 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