結果

問題 No.379 五円硬貨
ユーザー ぴろずぴろず
提出日時 2016-06-17 22:25:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 154 ms / 1,000 ms
コード長 330 bytes
コンパイル時間 2,295 ms
コンパイル使用メモリ 80,724 KB
実行使用メモリ 41,768 KB
最終ジャッジ日時 2024-10-09 16:38:53
合計ジャッジ時間 5,773 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
41,352 KB
testcase_01 AC 150 ms
41,556 KB
testcase_02 AC 150 ms
41,348 KB
testcase_03 AC 146 ms
41,480 KB
testcase_04 AC 147 ms
41,628 KB
testcase_05 AC 154 ms
41,768 KB
testcase_06 AC 149 ms
41,684 KB
testcase_07 AC 150 ms
41,496 KB
testcase_08 AC 146 ms
41,200 KB
testcase_09 AC 149 ms
41,604 KB
testcase_10 AC 148 ms
41,540 KB
testcase_11 AC 151 ms
41,492 KB
testcase_12 AC 148 ms
41,480 KB
testcase_13 AC 150 ms
41,372 KB
testcase_14 AC 150 ms
41,196 KB
testcase_15 AC 148 ms
41,236 KB
testcase_16 AC 148 ms
41,564 KB
testcase_17 AC 150 ms
41,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no379;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long n = sc.nextLong();
		double g = sc.nextDouble();
		double v = sc.nextDouble();
		
		double yomenai = (n / 5) * g;
		System.out.println(String.format("%.13f",yomenai / v));
	}

}
0