結果

問題 No.445 得点
ユーザー tentententen
提出日時 2020-10-02 12:44:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 283 bytes
コンパイル時間 2,015 ms
コンパイル使用メモリ 74,496 KB
実行使用メモリ 41,804 KB
最終ジャッジ日時 2024-07-08 05:46:40
合計ジャッジ時間 5,039 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
40,060 KB
testcase_01 AC 100 ms
41,332 KB
testcase_02 AC 114 ms
41,008 KB
testcase_03 AC 112 ms
41,148 KB
testcase_04 AC 109 ms
40,944 KB
testcase_05 AC 109 ms
40,112 KB
testcase_06 AC 112 ms
41,152 KB
testcase_07 AC 112 ms
41,044 KB
testcase_08 AC 113 ms
41,100 KB
testcase_09 AC 104 ms
41,200 KB
testcase_10 AC 111 ms
39,956 KB
testcase_11 AC 113 ms
41,272 KB
testcase_12 AC 101 ms
40,056 KB
testcase_13 AC 106 ms
41,608 KB
testcase_14 AC 110 ms
41,016 KB
testcase_15 AC 110 ms
41,276 KB
testcase_16 AC 102 ms
40,668 KB
testcase_17 AC 99 ms
41,064 KB
testcase_18 AC 109 ms
41,320 KB
testcase_19 AC 106 ms
41,804 KB
testcase_20 AC 101 ms
41,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 + (500 * a) / (8 + 2 * b);
        System.out.println(ans);
    }
}
0