結果

問題 No.32 貯金箱の憂鬱
ユーザー d_nishiyama85d_nishiyama85
提出日時 2015-05-01 22:30:57
言語 PHP
(8.3.4)
結果
AC  
実行時間 44 ms / 5,000 ms
コード長 282 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 31,960 KB
実行使用メモリ 31,416 KB
最終ジャッジ日時 2024-07-23 02:03:44
合計ジャッジ時間 1,348 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
31,080 KB
testcase_01 AC 43 ms
31,416 KB
testcase_02 AC 43 ms
31,156 KB
testcase_03 AC 44 ms
31,140 KB
testcase_04 AC 43 ms
31,028 KB
testcase_05 AC 43 ms
31,156 KB
testcase_06 AC 43 ms
31,036 KB
testcase_07 AC 44 ms
31,232 KB
testcase_08 AC 43 ms
31,116 KB
testcase_09 AC 42 ms
31,136 KB
testcase_10 AC 42 ms
31,344 KB
testcase_11 AC 42 ms
31,104 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php

$L = trim(fgets(STDIN));
$M = trim(fgets(STDIN));
$N = trim(fgets(STDIN));

$total = 100 * $L +  25 * $M + $N;

$t = intval($total / 1000);

$total %= 1000;

$m = intval($total / 100);

$total %= 100;

$q = intval($total / 25);

$total %= 25;

echo ($m + $q + $total) . "\n";
0