結果

問題 No.379 五円硬貨
ユーザー fal_rndfal_rnd
提出日時 2017-03-31 15:47:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 1,000 ms
コード長 413 bytes
コンパイル時間 1,983 ms
コンパイル使用メモリ 74,828 KB
実行使用メモリ 54,556 KB
最終ジャッジ日時 2024-07-07 04:42:37
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
53,392 KB
testcase_01 AC 123 ms
53,880 KB
testcase_02 AC 127 ms
54,220 KB
testcase_03 AC 124 ms
54,556 KB
testcase_04 AC 134 ms
54,324 KB
testcase_05 AC 134 ms
54,432 KB
testcase_06 AC 118 ms
53,972 KB
testcase_07 AC 129 ms
54,344 KB
testcase_08 AC 120 ms
53,916 KB
testcase_09 AC 127 ms
54,436 KB
testcase_10 AC 119 ms
53,764 KB
testcase_11 AC 123 ms
53,908 KB
testcase_12 AC 110 ms
52,872 KB
testcase_13 AC 127 ms
54,320 KB
testcase_14 AC 126 ms
54,376 KB
testcase_15 AC 128 ms
54,356 KB
testcase_16 AC 108 ms
53,328 KB
testcase_17 AC 126 ms
53,636 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigDecimal;
import java.math.RoundingMode;
import java.util.Scanner;

public class Main{

	static Scanner s=new Scanner(System.in);

	public static void main(String __[]){
		input();
		solve();
	}

	private static void input(){
	}

	private static void solve(){
		System.out.println(BigDecimal.valueOf((s.nextLong()/5)*s.nextLong())
				.divide(s.nextBigDecimal(),14,RoundingMode.HALF_UP));
	}
}
0