結果

問題 No.379 五円硬貨
ユーザー ohanaohana
提出日時 2023-09-29 17:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,284 KB
最終ジャッジ日時 2024-07-22 11:48:03
合計ジャッジ時間 3,370 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
80,284 KB
testcase_01 AC 124 ms
80,000 KB
testcase_02 AC 129 ms
79,900 KB
testcase_03 AC 122 ms
80,000 KB
testcase_04 AC 126 ms
80,040 KB
testcase_05 AC 124 ms
80,000 KB
testcase_06 AC 123 ms
79,872 KB
testcase_07 AC 124 ms
80,000 KB
testcase_08 AC 123 ms
79,488 KB
testcase_09 AC 121 ms
80,000 KB
testcase_10 AC 123 ms
79,872 KB
testcase_11 AC 125 ms
79,952 KB
testcase_12 AC 125 ms
79,744 KB
testcase_13 AC 123 ms
80,148 KB
testcase_14 AC 123 ms
80,276 KB
testcase_15 AC 122 ms
79,872 KB
testcase_16 AC 124 ms
80,000 KB
testcase_17 AC 122 ms
79,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal

n, g, v = map(decimal.Decimal, input().split())

n = n // 5
print(format(n * g / v, ".18f"))
0