結果

問題 No.379 五円硬貨
ユーザー Natsume-MNatsume-M
提出日時 2016-11-28 21:56:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 127 ms / 1,000 ms
コード長 228 bytes
コンパイル時間 3,399 ms
コンパイル使用メモリ 71,544 KB
実行使用メモリ 57,456 KB
最終ジャッジ日時 2023-08-18 08:55:04
合計ジャッジ時間 6,122 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
55,788 KB
testcase_01 AC 123 ms
55,468 KB
testcase_02 AC 122 ms
55,464 KB
testcase_03 AC 124 ms
55,508 KB
testcase_04 AC 125 ms
55,460 KB
testcase_05 AC 122 ms
55,748 KB
testcase_06 AC 123 ms
54,136 KB
testcase_07 AC 125 ms
55,284 KB
testcase_08 AC 123 ms
55,628 KB
testcase_09 AC 122 ms
55,632 KB
testcase_10 AC 121 ms
54,028 KB
testcase_11 AC 124 ms
55,576 KB
testcase_12 AC 126 ms
55,688 KB
testcase_13 AC 127 ms
57,456 KB
testcase_14 AC 125 ms
55,724 KB
testcase_15 AC 125 ms
55,440 KB
testcase_16 AC 122 ms
55,632 KB
testcase_17 AC 124 ms
55,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
class y379 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n=sc.nextInt();
		double g=sc.nextInt(), v=sc.nextInt();
		System.out.println((n/5)*g/v);
		sc.close();
	}
}
0