結果

問題 No.128 お年玉(1)
ユーザー ayaaya
提出日時 2019-07-26 14:58:46
言語 PHP
(8.3.4)
結果
AC  
実行時間 35 ms / 5,000 ms
コード長 521 bytes
コンパイル時間 1,636 ms
コンパイル使用メモリ 30,480 KB
実行使用メモリ 31,100 KB
最終ジャッジ日時 2024-10-01 11:04:44
合計ジャッジ時間 2,806 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
31,092 KB
testcase_01 AC 34 ms
30,952 KB
testcase_02 AC 34 ms
30,764 KB
testcase_03 AC 33 ms
30,632 KB
testcase_04 AC 34 ms
30,632 KB
testcase_05 AC 33 ms
30,628 KB
testcase_06 AC 34 ms
30,548 KB
testcase_07 AC 35 ms
30,880 KB
testcase_08 AC 34 ms
31,056 KB
testcase_09 AC 34 ms
30,724 KB
testcase_10 AC 34 ms
31,020 KB
testcase_11 AC 34 ms
30,748 KB
testcase_12 AC 34 ms
30,952 KB
testcase_13 AC 33 ms
30,748 KB
testcase_14 AC 34 ms
30,772 KB
testcase_15 AC 34 ms
30,752 KB
testcase_16 AC 35 ms
30,668 KB
testcase_17 AC 35 ms
30,900 KB
testcase_18 AC 35 ms
31,100 KB
testcase_19 AC 34 ms
30,880 KB
testcase_20 AC 35 ms
30,752 KB
testcase_21 AC 34 ms
30,692 KB
testcase_22 AC 33 ms
30,924 KB
testcase_23 AC 33 ms
31,028 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
/*
No.128 お年玉(1)
Yasuoは、予算がN円あり、親戚の子供M人にお年玉をあげたいと思っている。
お年玉は1000円紙幣だけにして、全員に平等(すべて同じ金額)でかつ最大の金額をあげたいと思っています。

この時、一人分になる金額を求めてください。


入力
N
M
*/

$budget=(int)trim(fgets(STDIN));
$children=(int)trim(fgets(STDIN));
$numSheet=(int)floor(($budget/$children)/1000);
$gift=(int)$numSheet*1000;
 echo $gift;

?>
0