結果

問題 No.379 五円硬貨
ユーザー rlangevinrlangevin
提出日時 2024-05-14 08:56:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 136 ms / 1,000 ms
コード長 85 bytes
コンパイル時間 297 ms
コンパイル使用メモリ 82,900 KB
実行使用メモリ 80,636 KB
最終ジャッジ日時 2024-05-14 08:56:17
合計ジャッジ時間 3,810 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
80,336 KB
testcase_01 AC 113 ms
79,968 KB
testcase_02 AC 110 ms
80,636 KB
testcase_03 AC 136 ms
80,264 KB
testcase_04 AC 112 ms
79,908 KB
testcase_05 AC 111 ms
80,276 KB
testcase_06 AC 111 ms
80,380 KB
testcase_07 AC 115 ms
80,340 KB
testcase_08 AC 113 ms
80,244 KB
testcase_09 AC 114 ms
80,168 KB
testcase_10 AC 112 ms
80,164 KB
testcase_11 AC 113 ms
80,376 KB
testcase_12 AC 113 ms
80,236 KB
testcase_13 AC 118 ms
80,132 KB
testcase_14 AC 113 ms
80,160 KB
testcase_15 AC 113 ms
79,880 KB
testcase_16 AC 112 ms
80,312 KB
testcase_17 AC 113 ms
80,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

N, G, V = map(int, input().split())
print((Decimal(N//5)*G/V))
0