結果

問題 No.379 五円硬貨
ユーザー tsunabittsunabit
提出日時 2019-06-02 14:24:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 1,000 ms
コード長 393 bytes
コンパイル時間 3,288 ms
コンパイル使用メモリ 74,120 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-09-17 20:10:44
合計ジャッジ時間 5,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 111 ms
54,200 KB
testcase_01 AC 123 ms
53,652 KB
testcase_02 AC 116 ms
53,624 KB
testcase_03 AC 131 ms
54,232 KB
testcase_04 AC 103 ms
53,112 KB
testcase_05 AC 114 ms
53,880 KB
testcase_06 AC 112 ms
54,044 KB
testcase_07 AC 115 ms
54,156 KB
testcase_08 AC 110 ms
53,876 KB
testcase_09 AC 103 ms
53,148 KB
testcase_10 AC 112 ms
53,628 KB
testcase_11 AC 118 ms
53,976 KB
testcase_12 AC 124 ms
54,028 KB
testcase_13 AC 125 ms
54,000 KB
testcase_14 AC 126 ms
54,088 KB
testcase_15 AC 100 ms
53,136 KB
testcase_16 AC 104 ms
52,964 KB
testcase_17 AC 124 ms
54,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class No379 {
    public static void main(String[] args) {
        // 標準入力から読み込む際に、Scannerオブジェクトを使う。
        Scanner s = new Scanner(System.in);
        long n = s.nextLong();
        double g = s.nextDouble();
        double v = s.nextDouble();
        System.out.println((n / 5) * g / v);
    }
}
0