結果

問題 No.445 得点
ユーザー kaoetayakaoetaya
提出日時 2016-11-21 19:28:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 4,782 ms
コンパイル使用メモリ 74,228 KB
実行使用メモリ 41,676 KB
最終ジャッジ日時 2024-05-05 12:15:54
合計ジャッジ時間 6,266 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
40,652 KB
testcase_01 AC 126 ms
41,296 KB
testcase_02 AC 125 ms
41,088 KB
testcase_03 AC 127 ms
41,396 KB
testcase_04 AC 129 ms
40,748 KB
testcase_05 AC 134 ms
41,676 KB
testcase_06 AC 122 ms
40,572 KB
testcase_07 AC 131 ms
41,396 KB
testcase_08 AC 127 ms
40,680 KB
testcase_09 AC 130 ms
41,424 KB
testcase_10 AC 116 ms
41,312 KB
testcase_11 AC 119 ms
40,696 KB
testcase_12 AC 122 ms
40,868 KB
testcase_13 AC 120 ms
41,292 KB
testcase_14 AC 117 ms
41,272 KB
testcase_15 AC 134 ms
41,292 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 129 ms
41,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class pre {
    public static void main(String[] args) {

        Scanner s = new Scanner(System.in);
		double n = s.nextDouble(),k = s.nextDouble(),f = 50*n+Math.floor((50*n)/(0.8+(0.2*k)));		
		System.out.println((int)f);
    }
}
0