結果

問題 No.379 五円硬貨
ユーザー leos_caraxleos_carax
提出日時 2016-10-23 23:06:55
言語 PHP
(8.3.4)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 121 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 31,320 KB
実行使用メモリ 31,400 KB
最終ジャッジ日時 2024-11-24 02:08:11
合計ジャッジ時間 1,591 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
30,948 KB
testcase_01 AC 39 ms
31,176 KB
testcase_02 AC 39 ms
30,968 KB
testcase_03 AC 39 ms
31,396 KB
testcase_04 AC 37 ms
30,936 KB
testcase_05 AC 37 ms
31,160 KB
testcase_06 AC 37 ms
31,160 KB
testcase_07 AC 37 ms
31,400 KB
testcase_08 AC 38 ms
31,264 KB
testcase_09 AC 40 ms
31,028 KB
testcase_10 AC 39 ms
31,036 KB
testcase_11 AC 38 ms
31,076 KB
testcase_12 AC 38 ms
31,128 KB
testcase_13 AC 37 ms
31,160 KB
testcase_14 AC 37 ms
31,156 KB
testcase_15 AC 38 ms
31,096 KB
testcase_16 AC 37 ms
30,880 KB
testcase_17 AC 37 ms
31,136 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
list($N, $G, $V) = explode(" ", trim(fgets(STDIN)));
$a = floor($N / 5);
printf("%.12f", $a*$G / $V);
echo PHP_EOL;
0