結果

問題 No.379 五円硬貨
ユーザー Tsukasa_TypeTsukasa_Type
提出日時 2018-02-23 01:38:07
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 1,000 ms
コード長 415 bytes
コンパイル時間 1,748 ms
コンパイル使用メモリ 74,380 KB
実行使用メモリ 54,528 KB
最終ジャッジ日時 2024-10-04 15:18:13
合計ジャッジ時間 4,619 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 107 ms
54,528 KB
testcase_01 AC 94 ms
52,896 KB
testcase_02 AC 99 ms
53,176 KB
testcase_03 AC 99 ms
53,212 KB
testcase_04 AC 98 ms
53,012 KB
testcase_05 AC 114 ms
54,052 KB
testcase_06 AC 113 ms
54,308 KB
testcase_07 AC 112 ms
54,252 KB
testcase_08 AC 111 ms
54,336 KB
testcase_09 AC 110 ms
54,068 KB
testcase_10 AC 100 ms
53,000 KB
testcase_11 AC 104 ms
52,996 KB
testcase_12 AC 111 ms
53,948 KB
testcase_13 AC 111 ms
54,316 KB
testcase_14 AC 106 ms
54,216 KB
testcase_15 AC 113 ms
54,028 KB
testcase_16 AC 95 ms
52,568 KB
testcase_17 AC 113 ms
54,340 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,10,RoundingMode.HALF_UP);
		System.out.println(ans);
	}
}
0