結果

問題 No.379 五円硬貨
ユーザー matsuyoshi30matsuyoshi30
提出日時 2016-08-07 10:35:58
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 361 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 73,884 KB
実行使用メモリ 41,812 KB
最終ジャッジ日時 2024-11-07 07:08:41
合計ジャッジ時間 5,838 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,084 KB
testcase_01 AC 133 ms
41,156 KB
testcase_02 AC 133 ms
41,608 KB
testcase_03 AC 132 ms
41,728 KB
testcase_04 AC 134 ms
41,352 KB
testcase_05 AC 136 ms
41,360 KB
testcase_06 AC 136 ms
41,812 KB
testcase_07 AC 137 ms
41,468 KB
testcase_08 AC 130 ms
41,072 KB
testcase_09 AC 133 ms
41,460 KB
testcase_10 AC 118 ms
40,260 KB
testcase_11 AC 133 ms
41,496 KB
testcase_12 AC 130 ms
41,180 KB
testcase_13 AC 133 ms
41,460 KB
testcase_14 AC 121 ms
40,440 KB
testcase_15 AC 134 ms
41,592 KB
testcase_16 AC 133 ms
41,444 KB
testcase_17 AC 130 ms
41,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main {
    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        double n = in.nextInt();
        double g = in.nextInt();
        double v = in.nextInt();

        int goen = (int)n / 5;
        double ans = (goen * g) / v;

        System.out.println(ans);

        in.close();
    }
}
0