結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
56,164 KB
testcase_01 AC 138 ms
55,836 KB
testcase_02 WA -
testcase_03 AC 139 ms
55,984 KB
testcase_04 AC 139 ms
56,252 KB
testcase_05 AC 138 ms
56,044 KB
testcase_06 AC 139 ms
55,992 KB
testcase_07 AC 140 ms
55,964 KB
testcase_08 AC 140 ms
55,820 KB
testcase_09 AC 141 ms
56,064 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 138 ms
55,676 KB
testcase_13 WA -
testcase_14 AC 138 ms
55,796 KB
testcase_15 WA -
testcase_16 AC 140 ms
56,504 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
権限があれば一括ダウンロードができます

ソースコード

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 + ((50 * a) / (int)(0.8 + 0.2 * b)));
  }
}
0