結果

問題 No.379 五円硬貨
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-23 01:39:03
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 414 bytes
コンパイル時間 2,126 ms
コンパイル使用メモリ 74,332 KB
実行使用メモリ 54,448 KB
最終ジャッジ日時 2024-10-04 15:21:27
合計ジャッジ時間 4,501 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,168 KB
testcase_01 AC 107 ms
53,992 KB
testcase_02 AC 107 ms
54,036 KB
testcase_03 AC 108 ms
54,272 KB
testcase_04 AC 106 ms
54,180 KB
testcase_05 AC 107 ms
54,012 KB
testcase_06 AC 108 ms
54,252 KB
testcase_07 AC 109 ms
54,388 KB
testcase_08 AC 94 ms
52,924 KB
testcase_09 WA -
testcase_10 AC 121 ms
54,448 KB
testcase_11 AC 122 ms
54,100 KB
testcase_12 AC 110 ms
54,124 KB
testcase_13 AC 102 ms
53,244 KB
testcase_14 WA -
testcase_15 AC 108 ms
54,368 KB
testcase_16 AC 101 ms
53,372 KB
testcase_17 AC 112 ms
54,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.math.*;

public class Main {
	static Scanner sc = new Scanner(System.in);
	public static void main(String[] args) {
		long n = sc.nextLong();
		long g = sc.nextLong();
		long v = sc.nextLong();
		long total = n/5*g;
		BigDecimal b1 = new BigDecimal(total);
		BigDecimal b2 = new BigDecimal(v);
		BigDecimal ans = b1.divide(b2,8,RoundingMode.HALF_UP);
		System.out.println(ans);
	}
}
0