結果

問題 No.445 得点
ユーザー kaoetayakaoetaya
提出日時 2016-11-21 19:28:22
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 265 bytes
コンパイル時間 2,998 ms
コンパイル使用メモリ 73,688 KB
実行使用メモリ 54,172 KB
最終ジャッジ日時 2024-11-27 09:28:16
合計ジャッジ時間 6,508 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
54,172 KB
testcase_01 AC 132 ms
53,768 KB
testcase_02 AC 122 ms
53,420 KB
testcase_03 AC 131 ms
53,980 KB
testcase_04 AC 127 ms
53,984 KB
testcase_05 AC 126 ms
54,052 KB
testcase_06 AC 128 ms
53,892 KB
testcase_07 AC 127 ms
53,760 KB
testcase_08 AC 132 ms
53,812 KB
testcase_09 AC 135 ms
53,724 KB
testcase_10 AC 119 ms
53,428 KB
testcase_11 AC 128 ms
53,836 KB
testcase_12 AC 142 ms
54,000 KB
testcase_13 AC 123 ms
53,204 KB
testcase_14 AC 129 ms
53,912 KB
testcase_15 AC 139 ms
53,900 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 128 ms
54,044 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