結果

問題 No.379 五円硬貨
ユーザー samplelpmassamplelpmas
提出日時 2017-01-03 10:20:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 2,468 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 41,860 KB
最終ジャッジ日時 2024-05-09 15:50:07
合計ジャッジ時間 6,012 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
41,324 KB
testcase_01 AC 138 ms
41,300 KB
testcase_02 AC 137 ms
41,152 KB
testcase_03 AC 139 ms
41,620 KB
testcase_04 AC 139 ms
41,352 KB
testcase_05 AC 139 ms
41,264 KB
testcase_06 AC 140 ms
41,436 KB
testcase_07 AC 137 ms
41,392 KB
testcase_08 AC 140 ms
41,196 KB
testcase_09 AC 136 ms
41,204 KB
testcase_10 AC 140 ms
41,304 KB
testcase_11 AC 139 ms
41,568 KB
testcase_12 AC 138 ms
41,292 KB
testcase_13 AC 137 ms
41,612 KB
testcase_14 AC 142 ms
41,420 KB
testcase_15 AC 137 ms
41,460 KB
testcase_16 AC 138 ms
41,084 KB
testcase_17 AC 143 ms
41,860 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