結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
52,652 KB
testcase_01 AC 115 ms
54,300 KB
testcase_02 AC 97 ms
52,856 KB
testcase_03 AC 101 ms
54,500 KB
testcase_04 AC 104 ms
52,760 KB
testcase_05 AC 104 ms
53,272 KB
testcase_06 AC 115 ms
54,116 KB
testcase_07 AC 131 ms
54,356 KB
testcase_08 AC 113 ms
53,772 KB
testcase_09 AC 115 ms
53,840 KB
testcase_10 AC 115 ms
54,200 KB
testcase_11 AC 104 ms
53,224 KB
testcase_12 AC 101 ms
52,744 KB
testcase_13 AC 115 ms
54,000 KB
testcase_14 WA -
testcase_15 AC 115 ms
53,776 KB
testcase_16 AC 121 ms
54,264 KB
testcase_17 AC 115 ms
54,096 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,9,RoundingMode.HALF_UP);
		System.out.println(ans);
	}
}
0