結果

問題 No.379 五円硬貨
ユーザー samplelpmassamplelpmas
提出日時 2017-01-03 10:20:33
言語 Java
(openjdk 23)
結果
AC  
実行時間 132 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 2,399 ms
コンパイル使用メモリ 74,224 KB
実行使用メモリ 54,364 KB
最終ジャッジ日時 2024-12-16 06:09:11
合計ジャッジ時間 5,417 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
52,884 KB
testcase_01 AC 126 ms
53,908 KB
testcase_02 AC 126 ms
53,872 KB
testcase_03 AC 132 ms
54,032 KB
testcase_04 AC 116 ms
52,668 KB
testcase_05 AC 123 ms
54,088 KB
testcase_06 AC 126 ms
54,108 KB
testcase_07 AC 119 ms
53,356 KB
testcase_08 AC 126 ms
54,164 KB
testcase_09 AC 113 ms
53,168 KB
testcase_10 AC 116 ms
54,364 KB
testcase_11 AC 120 ms
53,940 KB
testcase_12 AC 126 ms
53,952 KB
testcase_13 AC 110 ms
53,216 KB
testcase_14 AC 122 ms
54,060 KB
testcase_15 AC 121 ms
53,596 KB
testcase_16 AC 126 ms
54,152 KB
testcase_17 AC 116 ms
53,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

    public static void main(String[] args) {

        Scanner sc = new Scanner(System.in);

        int YEN = sc.nextInt();
        int GAS = sc.nextInt();
        int VOLUME = sc.nextInt();

        int fiveYenCoins = YEN / 5;
        long sumGas = (long) fiveYenCoins * GAS;
        double concentrationGas = (double) sumGas / VOLUME;

        System.out.printf("%.11f\n", concentrationGas);

    }

}
0