結果

問題 No.445 得点
ユーザー atkrymatkrym
提出日時 2016-12-28 10:36:31
言語 Java21
(openjdk 21)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 360 bytes
コンパイル時間 2,145 ms
コンパイル使用メモリ 74,084 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-05-09 22:37:04
合計ジャッジ時間 6,038 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 142 ms
41,332 KB
testcase_01 AC 138 ms
41,060 KB
testcase_02 AC 136 ms
41,116 KB
testcase_03 AC 145 ms
41,208 KB
testcase_04 AC 139 ms
41,200 KB
testcase_05 AC 137 ms
41,240 KB
testcase_06 AC 138 ms
41,408 KB
testcase_07 AC 144 ms
41,240 KB
testcase_08 AC 137 ms
41,720 KB
testcase_09 AC 145 ms
41,140 KB
testcase_10 AC 143 ms
41,460 KB
testcase_11 AC 141 ms
41,248 KB
testcase_12 AC 142 ms
41,344 KB
testcase_13 AC 147 ms
41,528 KB
testcase_14 AC 139 ms
41,496 KB
testcase_15 AC 134 ms
41,272 KB
testcase_16 AC 141 ms
41,428 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 145 ms
41,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    private static Scanner sc = new Scanner(System.in);
    public static void main(String[] args) throws Exception {
        int n = sc.nextInt();
        int k = sc.nextInt();
        
        int ret = n*50+(int)Math.floor((n*50)/(0.8f+0.2f*k));
        
        System.out.println(ret);
    }
}
0