結果

問題 No.445 得点
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:00:10
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 4,345 ms
コンパイル使用メモリ 71,208 KB
実行使用メモリ 56,224 KB
最終ジャッジ日時 2023-08-22 16:08:59
合計ジャッジ時間 7,495 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
56,176 KB
testcase_01 AC 142 ms
55,708 KB
testcase_02 AC 139 ms
55,704 KB
testcase_03 AC 138 ms
55,976 KB
testcase_04 AC 140 ms
55,952 KB
testcase_05 AC 138 ms
56,156 KB
testcase_06 AC 140 ms
56,004 KB
testcase_07 AC 140 ms
56,060 KB
testcase_08 AC 141 ms
55,992 KB
testcase_09 AC 140 ms
56,172 KB
testcase_10 AC 139 ms
56,136 KB
testcase_11 AC 137 ms
55,664 KB
testcase_12 AC 141 ms
55,904 KB
testcase_13 AC 145 ms
55,932 KB
testcase_14 AC 139 ms
55,868 KB
testcase_15 AC 139 ms
55,728 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 140 ms
55,956 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