結果

問題 No.379 五円硬貨
ユーザー fjafjafjafjafjafja
提出日時 2017-09-16 13:55:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 151 ms / 1,000 ms
コード長 266 bytes
コンパイル時間 3,485 ms
コンパイル使用メモリ 74,140 KB
実行使用メモリ 41,772 KB
最終ジャッジ日時 2024-11-08 01:29:56
合計ジャッジ時間 7,160 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
40,804 KB
testcase_01 AC 148 ms
41,464 KB
testcase_02 AC 135 ms
40,780 KB
testcase_03 AC 144 ms
41,544 KB
testcase_04 AC 145 ms
41,316 KB
testcase_05 AC 146 ms
41,420 KB
testcase_06 AC 133 ms
40,916 KB
testcase_07 AC 145 ms
41,456 KB
testcase_08 AC 144 ms
41,300 KB
testcase_09 AC 132 ms
40,816 KB
testcase_10 AC 146 ms
41,332 KB
testcase_11 AC 145 ms
41,400 KB
testcase_12 AC 151 ms
41,328 KB
testcase_13 AC 149 ms
41,772 KB
testcase_14 AC 146 ms
41,576 KB
testcase_15 AC 148 ms
41,368 KB
testcase_16 AC 135 ms
40,816 KB
testcase_17 AC 135 ms
41,088 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class N379 {
	public static void main(String[] args)
	{
		Scanner sc=new Scanner(System.in);
		long N=sc.nextLong();double G=sc.nextDouble(),V=sc.nextDouble();
		N=N/5;
		G=G/V;
		double ans=N*G;
		System.out.printf("%.13f",ans);
}}
0