結果

問題 No.445 得点
ユーザー tsunabittsunabit
提出日時 2019-06-09 16:47:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 3,296 ms
コンパイル使用メモリ 74,184 KB
実行使用メモリ 54,344 KB
最終ジャッジ日時 2024-10-06 00:09:27
合計ジャッジ時間 6,175 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
54,080 KB
testcase_01 AC 105 ms
52,876 KB
testcase_02 AC 104 ms
52,896 KB
testcase_03 AC 110 ms
53,548 KB
testcase_04 AC 113 ms
53,988 KB
testcase_05 AC 101 ms
52,892 KB
testcase_06 AC 109 ms
53,512 KB
testcase_07 AC 117 ms
54,108 KB
testcase_08 AC 115 ms
54,036 KB
testcase_09 AC 111 ms
53,380 KB
testcase_10 AC 116 ms
54,144 KB
testcase_11 AC 119 ms
53,808 KB
testcase_12 AC 108 ms
53,264 KB
testcase_13 AC 115 ms
53,904 KB
testcase_14 AC 124 ms
54,124 KB
testcase_15 AC 117 ms
54,172 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 117 ms
53,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class No445 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt(), k = sc.nextInt();
        System.out.println(50*n + (int)((50*n) / (0.8 + (0.2 * k))));
    }
}
0