結果

問題 No.379 五円硬貨
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-11 03:00:19
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 1,000 ms
コード長 306 bytes
コンパイル時間 1,965 ms
コンパイル使用メモリ 73,564 KB
実行使用メモリ 54,444 KB
最終ジャッジ日時 2024-11-25 07:37:51
合計ジャッジ時間 4,698 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
54,112 KB
testcase_01 AC 115 ms
54,088 KB
testcase_02 AC 109 ms
52,948 KB
testcase_03 AC 118 ms
53,660 KB
testcase_04 AC 122 ms
53,772 KB
testcase_05 AC 119 ms
54,044 KB
testcase_06 AC 105 ms
52,756 KB
testcase_07 AC 102 ms
52,748 KB
testcase_08 AC 107 ms
52,632 KB
testcase_09 AC 100 ms
52,572 KB
testcase_10 AC 107 ms
52,964 KB
testcase_11 AC 128 ms
54,036 KB
testcase_12 AC 117 ms
53,964 KB
testcase_13 AC 115 ms
54,444 KB
testcase_14 AC 127 ms
53,624 KB
testcase_15 AC 122 ms
53,760 KB
testcase_16 AC 110 ms
52,680 KB
testcase_17 AC 123 ms
53,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int G = sc.nextInt();
        int V = sc.nextInt();
        
        double r = (double)G*(N/5)/V;
        System.out.println(r);
    }
}
0