結果

問題 No.379 五円硬貨
ユーザー papinianuspapinianus
提出日時 2016-07-28 13:22:46
言語 PHP
(8.3.4)
結果
AC  
実行時間 45 ms / 1,000 ms
コード長 123 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,348 KB
最終ジャッジ日時 2024-11-06 18:08:22
合計ジャッジ時間 1,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
30,888 KB
testcase_01 AC 43 ms
30,772 KB
testcase_02 AC 44 ms
31,348 KB
testcase_03 AC 42 ms
31,044 KB
testcase_04 AC 43 ms
31,328 KB
testcase_05 AC 43 ms
31,332 KB
testcase_06 AC 43 ms
31,024 KB
testcase_07 AC 43 ms
30,896 KB
testcase_08 AC 43 ms
30,920 KB
testcase_09 AC 45 ms
30,932 KB
testcase_10 AC 42 ms
31,028 KB
testcase_11 AC 40 ms
31,244 KB
testcase_12 AC 42 ms
31,164 KB
testcase_13 AC 41 ms
31,152 KB
testcase_14 AC 42 ms
31,004 KB
testcase_15 AC 42 ms
31,340 KB
testcase_16 AC 43 ms
31,096 KB
testcase_17 AC 43 ms
31,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

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