結果

問題 No.445 得点
ユーザー kenji_shioyakenji_shioya
提出日時 2017-01-07 14:07:42
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 260 bytes
コンパイル時間 4,107 ms
コンパイル使用メモリ 73,900 KB
実行使用メモリ 42,008 KB
最終ジャッジ日時 2024-05-09 21:55:17
合計ジャッジ時間 7,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 144 ms
42,008 KB
testcase_01 AC 143 ms
41,968 KB
testcase_02 WA -
testcase_03 AC 141 ms
41,756 KB
testcase_04 AC 143 ms
41,724 KB
testcase_05 AC 143 ms
41,612 KB
testcase_06 AC 142 ms
41,760 KB
testcase_07 AC 142 ms
41,800 KB
testcase_08 AC 155 ms
41,764 KB
testcase_09 AC 143 ms
41,468 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 138 ms
41,704 KB
testcase_13 WA -
testcase_14 AC 152 ms
41,892 KB
testcase_15 WA -
testcase_16 AC 137 ms
41,752 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