結果

問題 No.379 五円硬貨
ユーザー sasukesasuke
提出日時 2016-06-20 18:01:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 352 bytes
コンパイル時間 3,366 ms
コンパイル使用メモリ 74,624 KB
実行使用メモリ 41,644 KB
最終ジャッジ日時 2024-10-11 17:11:03
合計ジャッジ時間 6,039 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
40,904 KB
testcase_01 AC 112 ms
40,000 KB
testcase_02 AC 126 ms
41,056 KB
testcase_03 AC 123 ms
41,200 KB
testcase_04 AC 127 ms
41,384 KB
testcase_05 AC 120 ms
40,232 KB
testcase_06 AC 126 ms
41,112 KB
testcase_07 AC 126 ms
41,440 KB
testcase_08 AC 124 ms
41,136 KB
testcase_09 AC 125 ms
41,368 KB
testcase_10 AC 120 ms
41,084 KB
testcase_11 AC 108 ms
40,104 KB
testcase_12 AC 114 ms
40,032 KB
testcase_13 AC 127 ms
41,276 KB
testcase_14 AC 125 ms
41,000 KB
testcase_15 AC 127 ms
41,100 KB
testcase_16 AC 122 ms
41,644 KB
testcase_17 AC 119 ms
41,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Main{
    public static void main(String[] args){
        Scanner sc=new Scanner(System.in);
        long N =sc.nextLong();
        long G =sc.nextLong();
        long V =sc.nextLong();
        double maisu=(int)N/5;
        double x=maisu /V;
        double noudo= x*G;
        System.out.println(noudo);
    }
}
0