結果

問題 No.379 五円硬貨
ユーザー GrenacheGrenache
提出日時 2016-06-17 22:28:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 341 bytes
コンパイル時間 3,516 ms
コンパイル使用メモリ 74,396 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-10-09 16:42:25
合計ジャッジ時間 6,344 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,920 KB
testcase_01 AC 128 ms
41,172 KB
testcase_02 AC 129 ms
41,440 KB
testcase_03 AC 137 ms
41,272 KB
testcase_04 AC 133 ms
41,248 KB
testcase_05 AC 130 ms
40,956 KB
testcase_06 AC 132 ms
41,168 KB
testcase_07 AC 118 ms
40,084 KB
testcase_08 AC 129 ms
40,984 KB
testcase_09 AC 135 ms
40,908 KB
testcase_10 AC 120 ms
40,104 KB
testcase_11 AC 130 ms
41,392 KB
testcase_12 AC 129 ms
41,060 KB
testcase_13 AC 128 ms
41,356 KB
testcase_14 AC 132 ms
41,428 KB
testcase_15 AC 129 ms
41,164 KB
testcase_16 AC 129 ms
41,260 KB
testcase_17 AC 130 ms
40,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;


public class Main_yukicoder379 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int g = sc.nextInt();
        int v = sc.nextInt();

        n /= 5;

        System.out.printf("%.13f\n", (double)g * n / v);

        sc.close();
    }
}
0