結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,240 KB
testcase_01 AC 132 ms
53,988 KB
testcase_02 AC 123 ms
54,304 KB
testcase_03 AC 121 ms
54,104 KB
testcase_04 AC 121 ms
53,840 KB
testcase_05 AC 120 ms
53,880 KB
testcase_06 AC 125 ms
54,128 KB
testcase_07 AC 125 ms
54,176 KB
testcase_08 AC 121 ms
54,048 KB
testcase_09 AC 108 ms
53,068 KB
testcase_10 AC 111 ms
53,124 KB
testcase_11 AC 120 ms
54,200 KB
testcase_12 AC 127 ms
54,328 KB
testcase_13 AC 120 ms
54,196 KB
testcase_14 AC 122 ms
53,996 KB
testcase_15 AC 124 ms
54,004 KB
testcase_16 AC 119 ms
54,168 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 126 ms
54,012 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