結果

問題 No.379 五円硬貨
ユーザー fkwnw3_1243fkwnw3_1243
提出日時 2017-05-04 13:35:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 56 ms / 1,000 ms
コード長 601 bytes
コンパイル時間 2,028 ms
コンパイル使用メモリ 74,676 KB
実行使用メモリ 46,336 KB
最終ジャッジ日時 2024-09-14 07:04:50
合計ジャッジ時間 3,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
46,336 KB
testcase_01 AC 53 ms
36,796 KB
testcase_02 AC 52 ms
36,960 KB
testcase_03 AC 55 ms
36,756 KB
testcase_04 AC 54 ms
36,804 KB
testcase_05 AC 53 ms
36,880 KB
testcase_06 AC 52 ms
36,768 KB
testcase_07 AC 53 ms
36,992 KB
testcase_08 AC 52 ms
36,640 KB
testcase_09 AC 53 ms
36,936 KB
testcase_10 AC 52 ms
36,952 KB
testcase_11 AC 53 ms
36,784 KB
testcase_12 AC 53 ms
36,836 KB
testcase_13 AC 54 ms
36,960 KB
testcase_14 AC 54 ms
36,524 KB
testcase_15 AC 53 ms
36,660 KB
testcase_16 AC 53 ms
36,740 KB
testcase_17 AC 54 ms
36,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;

import static java.lang.System.in;

public class Main {
    public static void main(String[] args) throws IOException {
        BufferedReader reader = new BufferedReader(new InputStreamReader(in));
        String[] inputs = reader.readLine().split(" ");
        long N = Long.parseLong(inputs[0]);
        long G = Long.parseLong(inputs[1]);
        long V = Long.parseLong(inputs[2]);

        long numOf5Yen = N / 5;
        long gas = numOf5Yen * G;
        System.out.println((double)gas / V);
    }
}
0