結果

問題 No.32 貯金箱の憂鬱
ユーザー jake_tarojake_taro
提出日時 2015-09-07 14:19:39
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 548 bytes
コンパイル時間 401 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 32,532 KB
最終ジャッジ日時 2024-07-23 02:08:58
合計ジャッジ時間 1,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
32,528 KB
testcase_01 AC 42 ms
32,528 KB
testcase_02 AC 42 ms
32,400 KB
testcase_03 AC 42 ms
32,532 KB
testcase_04 AC 41 ms
32,528 KB
testcase_05 AC 43 ms
32,400 KB
testcase_06 AC 41 ms
32,404 KB
testcase_07 AC 42 ms
32,400 KB
testcase_08 AC 42 ms
32,400 KB
testcase_09 AC 41 ms
32,532 KB
testcase_10 AC 40 ms
32,528 KB
testcase_11 AC 41 ms
32,404 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*両替問題*/

foreach(range(1,3) as $key => $value){
	$money[] = trim(fgets(STDIN));
}
$L = $money[0]; // 100円硬貨の枚数
$M = $money[1]; // 25円硬貨の枚数
$N = $money[2]; // 1円硬貨の枚数

$S = 0; //1000円札の枚数

$sub_N = floor($N / 25);
$mod_N = $N % 25;

if($sub_N > 0){
	$M += $sub_N;
	$N = $mod_N;
}
$sub_M = floor($M / 4);
$mod_M = $M % 4;

if($sub_M > 0){
	$L += $sub_M;
	$M = $mod_M;
}
$sub_L = floor($L / 10);
$mod_L = $L % 10;

if($sub_L > 0){
	$S += $sub_L;
	$L = $mod_L;
}

echo $L + $M + $N, PHP_EOL;
0