結果
問題 | No.445 得点 |
ユーザー | kenji_shioya |
提出日時 | 2017-01-07 14:22:35 |
言語 | Java21 (openjdk 21) |
結果 |
RE
|
実行時間 | - |
コード長 | 437 bytes |
コンパイル時間 | 3,261 ms |
コンパイル使用メモリ | 75,520 KB |
実行使用メモリ | 56,188 KB |
最終ジャッジ日時 | 2024-05-09 21:56:15 |
合計ジャッジ時間 | 6,876 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 126 ms
41,296 KB |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | AC | 131 ms
41,744 KB |
testcase_13 | RE | - |
testcase_14 | AC | 133 ms
41,532 KB |
testcase_15 | AC | 133 ms
41,120 KB |
testcase_16 | AC | 129 ms
41,732 KB |
testcase_17 | AC | 129 ms
41,184 KB |
testcase_18 | AC | 130 ms
41,644 KB |
testcase_19 | AC | 118 ms
41,624 KB |
testcase_20 | RE | - |
ソースコード
import java.util.*; import java.math.BigDecimal; public class Point { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); BigDecimal b = new BigDecimal(sc.next()); BigDecimal c = new BigDecimal("0.8"); BigDecimal d = new BigDecimal("0.2"); BigDecimal e = new BigDecimal(50*a); System.out.println(a * 50 + e.divide(c.add(d.multiply(b))).intValue()); } }