結果

問題 No.379 五円硬貨
ユーザー takoshi186takoshi186
提出日時 2016-08-01 14:59:47
言語 PHP
(8.3.4)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 228 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 31,000 KB
実行使用メモリ 31,300 KB
最終ジャッジ日時 2024-11-06 21:40:05
合計ジャッジ時間 1,667 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
31,004 KB
testcase_01 AC 43 ms
30,832 KB
testcase_02 AC 43 ms
30,988 KB
testcase_03 AC 43 ms
30,900 KB
testcase_04 AC 42 ms
30,928 KB
testcase_05 AC 43 ms
30,992 KB
testcase_06 AC 42 ms
31,264 KB
testcase_07 AC 42 ms
30,912 KB
testcase_08 AC 42 ms
31,172 KB
testcase_09 AC 42 ms
30,908 KB
testcase_10 AC 42 ms
31,300 KB
testcase_11 AC 42 ms
31,088 KB
testcase_12 AC 42 ms
31,080 KB
testcase_13 AC 43 ms
31,116 KB
testcase_14 AC 43 ms
31,032 KB
testcase_15 AC 42 ms
30,972 KB
testcase_16 AC 42 ms
30,952 KB
testcase_17 AC 43 ms
31,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
    // $text = "100 500 10";
    // list( $N, $G, $V ) = explode( " ", $text);
    list( $N, $G, $V )  = explode( " ", trim(fgets(STDIN)));
    $yen5_count = floor($N / 5);
    printf( "%.12f", $yen5_count * $G / $V);
    
0