結果

問題 No.379 五円硬貨
ユーザー tsunabittsunabit
提出日時 2019-06-02 14:04:07
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 397 bytes
コンパイル時間 3,043 ms
コンパイル使用メモリ 74,144 KB
実行使用メモリ 56,548 KB
最終ジャッジ日時 2024-09-17 20:10:37
合計ジャッジ時間 6,037 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 124 ms
54,488 KB
testcase_04 AC 128 ms
54,400 KB
testcase_05 WA -
testcase_06 AC 121 ms
54,248 KB
testcase_07 AC 126 ms
54,420 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 117 ms
53,288 KB
testcase_13 AC 122 ms
54,164 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 124 ms
54,260 KB
testcase_17 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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