結果

問題 No.445 得点
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:00:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 3,513 ms
コンパイル使用メモリ 74,408 KB
実行使用メモリ 54,432 KB
最終ジャッジ日時 2024-12-17 16:02:27
合計ジャッジ時間 7,598 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,052 KB
testcase_01 AC 151 ms
54,228 KB
testcase_02 AC 151 ms
54,380 KB
testcase_03 AC 152 ms
54,112 KB
testcase_04 AC 147 ms
54,380 KB
testcase_05 AC 154 ms
54,092 KB
testcase_06 AC 151 ms
54,336 KB
testcase_07 AC 154 ms
53,996 KB
testcase_08 AC 150 ms
54,268 KB
testcase_09 AC 149 ms
54,368 KB
testcase_10 AC 152 ms
54,136 KB
testcase_11 AC 148 ms
54,392 KB
testcase_12 AC 148 ms
54,432 KB
testcase_13 AC 149 ms
54,144 KB
testcase_14 AC 148 ms
54,328 KB
testcase_15 AC 150 ms
54,204 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 149 ms
54,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

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

    Scanner sc = new Scanner(System.in);

    int a = sc.nextInt();
    double b = sc.nextDouble();

    System.out.println(a * 50 + (int)((50 * a) / (0.8 + 0.2 * b)));
  }
}
0