結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 139 ms
58,024 KB
testcase_04 AC 141 ms
57,884 KB
testcase_05 WA -
testcase_06 AC 141 ms
57,920 KB
testcase_07 AC 140 ms
57,732 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 140 ms
57,708 KB
testcase_13 AC 141 ms
57,768 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 142 ms
57,900 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