結果

問題 No.379 五円硬貨
ユーザー TatsuDXTatsuDX
提出日時 2016-09-03 14:38:29
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 1,000 ms
コード長 452 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 74,432 KB
実行使用メモリ 54,420 KB
最終ジャッジ日時 2024-11-15 18:38:36
合計ジャッジ時間 7,122 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,996 KB
testcase_01 AC 132 ms
53,964 KB
testcase_02 AC 133 ms
53,744 KB
testcase_03 AC 132 ms
54,104 KB
testcase_04 AC 135 ms
54,196 KB
testcase_05 AC 133 ms
54,100 KB
testcase_06 AC 134 ms
53,808 KB
testcase_07 AC 132 ms
54,156 KB
testcase_08 AC 133 ms
54,032 KB
testcase_09 AC 133 ms
54,184 KB
testcase_10 AC 133 ms
53,948 KB
testcase_11 AC 136 ms
54,060 KB
testcase_12 AC 134 ms
54,132 KB
testcase_13 AC 134 ms
54,388 KB
testcase_14 AC 135 ms
54,420 KB
testcase_15 AC 137 ms
53,716 KB
testcase_16 AC 131 ms
53,880 KB
testcase_17 AC 134 ms
54,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Test {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);

		long n = sc.nextLong(), g = sc.nextLong(), v = sc.nextLong();
		long m = n / 5, a = m * g / v, b = (m * g) % v;
		System.out.print(a);
		if (b == 0) {
			return;
		}
		System.out.print(".");
		for (int i = 0; b > 0 && i < 12; i++) {
			System.out.print((b * 10) / v);
			b = (b * 10) % v;
		}
		System.out.println();
	}
}
0