結果

問題 No.379 五円硬貨
ユーザー ohanaohana
提出日時 2023-09-29 17:48:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 236 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 87,312 KB
実行使用メモリ 89,228 KB
最終ジャッジ日時 2023-09-29 17:48:34
合計ジャッジ時間 5,393 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 211 ms
89,084 KB
testcase_01 AC 206 ms
89,056 KB
testcase_02 AC 207 ms
89,076 KB
testcase_03 AC 212 ms
88,996 KB
testcase_04 AC 236 ms
89,092 KB
testcase_05 AC 208 ms
89,040 KB
testcase_06 AC 208 ms
89,048 KB
testcase_07 AC 210 ms
89,028 KB
testcase_08 AC 223 ms
89,012 KB
testcase_09 AC 207 ms
89,076 KB
testcase_10 AC 205 ms
89,048 KB
testcase_11 AC 204 ms
88,940 KB
testcase_12 AC 213 ms
88,880 KB
testcase_13 AC 207 ms
89,160 KB
testcase_14 AC 210 ms
89,124 KB
testcase_15 AC 209 ms
88,944 KB
testcase_16 AC 205 ms
89,228 KB
testcase_17 AC 212 ms
89,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import decimal

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

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