結果

問題 No.379 五円硬貨
ユーザー kagikakko_karikagikakko_kari
提出日時 2016-09-12 23:47:45
言語 PHP
(8.3.4)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 131 bytes
コンパイル時間 872 ms
コンパイル使用メモリ 18,556 KB
実行使用メモリ 18,904 KB
最終ジャッジ日時 2023-08-10 19:19:32
合計ジャッジ時間 2,127 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
18,856 KB
testcase_01 AC 15 ms
18,844 KB
testcase_02 AC 14 ms
18,792 KB
testcase_03 AC 14 ms
18,880 KB
testcase_04 AC 15 ms
18,840 KB
testcase_05 AC 15 ms
18,820 KB
testcase_06 AC 15 ms
18,796 KB
testcase_07 AC 14 ms
18,864 KB
testcase_08 AC 15 ms
18,864 KB
testcase_09 AC 15 ms
18,852 KB
testcase_10 AC 15 ms
18,836 KB
testcase_11 AC 15 ms
18,884 KB
testcase_12 AC 15 ms
18,896 KB
testcase_13 AC 14 ms
18,904 KB
testcase_14 AC 15 ms
18,888 KB
testcase_15 AC 14 ms
18,852 KB
testcase_16 AC 16 ms
18,820 KB
testcase_17 AC 14 ms
18,804 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($N,$G,$V) = explode(" ",trim(fgets(STDIN)));

$gas = sprintf("%.12f",floor($N / 5) * $G / $V);

echo $gas . PHP_EOL ;
?>
0