結果

問題 No.379 五円硬貨
ユーザー sougo002sougo002
提出日時 2016-06-30 01:12:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 389 bytes
コンパイル時間 3,104 ms
コンパイル使用メモリ 74,196 KB
実行使用メモリ 54,084 KB
最終ジャッジ日時 2024-10-11 23:10:26
合計ジャッジ時間 6,082 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,004 KB
testcase_01 AC 109 ms
52,288 KB
testcase_02 AC 125 ms
53,700 KB
testcase_03 AC 128 ms
54,008 KB
testcase_04 AC 127 ms
53,888 KB
testcase_05 AC 124 ms
53,844 KB
testcase_06 AC 127 ms
54,084 KB
testcase_07 AC 114 ms
52,684 KB
testcase_08 AC 128 ms
54,048 KB
testcase_09 AC 130 ms
53,976 KB
testcase_10 AC 130 ms
53,624 KB
testcase_11 AC 112 ms
52,932 KB
testcase_12 AC 115 ms
52,664 KB
testcase_13 AC 133 ms
53,952 KB
testcase_14 AC 127 ms
53,588 KB
testcase_15 AC 129 ms
53,884 KB
testcase_16 AC 114 ms
53,956 KB
testcase_17 AC 128 ms
53,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class TGMain {
    
    public static void main(String[] args){
        double G, V, N, b;
        int a;
        double ans;
        Scanner sc = new Scanner(System.in);
        
        N = sc.nextInt();
        G = sc.nextInt();
        V = sc.nextInt();
        a = (int)N/5;
        b = G*a;
        ans = b/V;
        System.out.println(ans);
    }
}
0