結果
問題 | No.32 貯金箱の憂鬱 |
ユーザー | sayuusa |
提出日時 | 2019-07-25 14:49:39 |
言語 | PHP (8.3.4) |
結果 |
WA
|
実行時間 | - |
コード長 | 584 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 31,024 KB |
実行使用メモリ | 31,228 KB |
最終ジャッジ日時 | 2024-07-02 06:01:51 |
合計ジャッジ時間 | 1,244 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $input_number_100 = trim(fgets(STDIN)); $input_number_25 = trim(fgets(STDIN)); $input_number_1 = trim(fgets(STDIN)); $total = $input_number_100 *100 + $input_number_25 *25 + $input_number_1; $answer_number_total = 0; var_dump($total); if($total != 0){ $answer_number_100 = floor($total / 100); $answer_number_25 = floor(($total - $answer_number_100 * 100) / 25); $answer_number_1 = $total - ($answer_number_100 * 100 + $answer_number_25 * 25); $answer_number_total = $answer_number_100 + $answer_number_25 + $answer_number_1; } echo $answer_number_total . "\n";