結果

問題 No.379 五円硬貨
ユーザー noiunoiu
提出日時 2016-06-30 01:55:45
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 1,000 ms
コード長 389 bytes
コンパイル時間 3,479 ms
コンパイル使用メモリ 73,632 KB
実行使用メモリ 41,360 KB
最終ジャッジ日時 2024-10-11 23:12:20
合計ジャッジ時間 6,781 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,228 KB
testcase_01 AC 136 ms
41,208 KB
testcase_02 AC 136 ms
41,188 KB
testcase_03 AC 135 ms
40,980 KB
testcase_04 AC 132 ms
41,252 KB
testcase_05 AC 135 ms
41,120 KB
testcase_06 AC 133 ms
41,120 KB
testcase_07 AC 138 ms
40,972 KB
testcase_08 AC 139 ms
41,144 KB
testcase_09 AC 135 ms
41,328 KB
testcase_10 AC 134 ms
41,068 KB
testcase_11 AC 138 ms
41,360 KB
testcase_12 AC 140 ms
41,248 KB
testcase_13 AC 134 ms
40,760 KB
testcase_14 AC 135 ms
41,016 KB
testcase_15 AC 136 ms
41,344 KB
testcase_16 AC 131 ms
41,212 KB
testcase_17 AC 136 ms
41,124 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