結果

問題 No.379 五円硬貨
ユーザー htensaihtensai
提出日時 2019-11-20 13:50:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 133 ms / 1,000 ms
コード長 289 bytes
コンパイル時間 2,058 ms
コンパイル使用メモリ 74,168 KB
実行使用メモリ 54,704 KB
最終ジャッジ日時 2024-10-06 05:15:56
合計ジャッジ時間 5,355 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,176 KB
testcase_01 AC 126 ms
54,184 KB
testcase_02 AC 128 ms
54,252 KB
testcase_03 AC 127 ms
54,300 KB
testcase_04 AC 129 ms
54,324 KB
testcase_05 AC 129 ms
54,184 KB
testcase_06 AC 128 ms
53,988 KB
testcase_07 AC 133 ms
54,704 KB
testcase_08 AC 130 ms
54,316 KB
testcase_09 AC 128 ms
54,584 KB
testcase_10 AC 130 ms
54,240 KB
testcase_11 AC 131 ms
54,232 KB
testcase_12 AC 126 ms
54,256 KB
testcase_13 AC 129 ms
54,468 KB
testcase_14 AC 132 ms
54,420 KB
testcase_15 AC 116 ms
52,968 KB
testcase_16 AC 128 ms
54,336 KB
testcase_17 AC 131 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double g = sc.nextInt();
		int v = sc.nextInt();
	    System.out.println(java.math.BigDecimal.valueOf(n / 5 * g / v).toPlainString());
	}
}
0