結果

問題 No.379 五円硬貨
ユーザー RinRin
提出日時 2016-09-09 11:43:00
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 1,000 ms
コード長 331 bytes
コンパイル時間 3,272 ms
コンパイル使用メモリ 75,104 KB
実行使用メモリ 54,488 KB
最終ジャッジ日時 2024-11-16 05:16:02
合計ジャッジ時間 6,731 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
54,012 KB
testcase_01 AC 134 ms
54,040 KB
testcase_02 AC 136 ms
53,952 KB
testcase_03 AC 138 ms
54,304 KB
testcase_04 AC 118 ms
54,488 KB
testcase_05 AC 134 ms
53,912 KB
testcase_06 AC 133 ms
54,016 KB
testcase_07 AC 131 ms
53,836 KB
testcase_08 AC 132 ms
53,904 KB
testcase_09 AC 133 ms
54,160 KB
testcase_10 AC 133 ms
54,204 KB
testcase_11 AC 132 ms
54,224 KB
testcase_12 AC 137 ms
54,268 KB
testcase_13 AC 135 ms
54,048 KB
testcase_14 AC 131 ms
53,952 KB
testcase_15 AC 130 ms
54,272 KB
testcase_16 AC 132 ms
54,136 KB
testcase_17 AC 131 ms
53,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class b {
	public static void main(String args[]){
		Scanner sc = new Scanner(System.in);
		long N = sc.nextLong();
		long G = sc.nextLong();
		long V = sc.nextLong();
		long foo = N / 5;
		double tmp = (G * foo);
		double i_o = V;
		double bar = tmp / V;
		System.out.printf("%.12f\n", bar);
	}
}
0