結果

問題 No.32 貯金箱の憂鬱
ユーザー papinianuspapinianus
提出日時 2016-05-15 01:38:31
言語 PHP
(8.3.4)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 248 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 32,272 KB
実行使用メモリ 31,436 KB
最終ジャッジ日時 2024-07-23 02:20:42
合計ジャッジ時間 1,209 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
31,328 KB
testcase_01 AC 43 ms
31,436 KB
testcase_02 AC 41 ms
31,392 KB
testcase_03 AC 41 ms
31,272 KB
testcase_04 AC 41 ms
30,956 KB
testcase_05 AC 41 ms
30,960 KB
testcase_06 AC 41 ms
31,360 KB
testcase_07 AC 41 ms
31,368 KB
testcase_08 AC 42 ms
31,308 KB
testcase_09 AC 41 ms
31,244 KB
testcase_10 AC 41 ms
31,272 KB
testcase_11 AC 41 ms
31,056 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$L = trim(fgets(STDIN)) % 10;
$M = trim(fgets(STDIN)) % 40;
$N = trim(fgets(STDIN)) % 1000;
$sum = ($L*100 + $M*25 + $N) % 1000;
$hun = floor($sum/100);
$quart = floor(($sum % 100) / 25);
$one = $sum % 25;
echo $hun+$quart+$one;
echo PHP_EOL;
0