結果

問題 No.445 得点
ユーザー tsunabittsunabit
提出日時 2019-06-09 16:47:31
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 366 bytes
コンパイル時間 3,142 ms
コンパイル使用メモリ 73,892 KB
実行使用メモリ 41,680 KB
最終ジャッジ日時 2024-04-15 20:07:47
合計ジャッジ時間 6,454 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
40,264 KB
testcase_01 AC 123 ms
41,328 KB
testcase_02 AC 126 ms
41,164 KB
testcase_03 AC 114 ms
40,324 KB
testcase_04 AC 113 ms
39,892 KB
testcase_05 AC 112 ms
39,888 KB
testcase_06 AC 118 ms
41,172 KB
testcase_07 AC 120 ms
41,228 KB
testcase_08 AC 109 ms
39,888 KB
testcase_09 AC 121 ms
41,432 KB
testcase_10 AC 122 ms
41,252 KB
testcase_11 AC 122 ms
41,348 KB
testcase_12 AC 112 ms
40,140 KB
testcase_13 AC 126 ms
41,472 KB
testcase_14 AC 108 ms
40,144 KB
testcase_15 AC 120 ms
41,112 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 119 ms
41,336 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