結果
問題 | No.311 z in FizzBuzzString |
ユーザー | papinianus |
提出日時 | 2016-06-08 11:38:44 |
言語 | PHP (8.3.4) |
結果 |
AC
|
実行時間 | 41 ms / 1,500 ms |
コード長 | 480 bytes |
コンパイル時間 | 112 ms |
コンパイル使用メモリ | 32,344 KB |
実行使用メモリ | 32,532 KB |
最終ジャッジ日時 | 2024-09-24 21:44:56 |
合計ジャッジ時間 | 1,062 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
32,532 KB |
testcase_01 | AC | 38 ms
32,524 KB |
testcase_02 | AC | 41 ms
32,532 KB |
testcase_03 | AC | 41 ms
32,400 KB |
testcase_04 | AC | 40 ms
32,404 KB |
testcase_05 | AC | 37 ms
32,144 KB |
testcase_06 | AC | 37 ms
32,400 KB |
testcase_07 | AC | 39 ms
32,528 KB |
testcase_08 | AC | 39 ms
32,528 KB |
testcase_09 | AC | 39 ms
32,340 KB |
testcase_10 | AC | 40 ms
32,404 KB |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php $numArr = str_split(trim(fgets(STDIN))); $len = count($numArr); $sum = array_sum($numArr); if($numArr[$len-1] >= 5) { $numFor5 = (int)(substr(implode('', $numArr),0,$len-1).'5'); } else { $numFor5 = (int)(substr(implode('', $numArr),0,$len-1).'0'); } $numFor3 = (int)(implode('', $numArr))-($sum % 3); // $num = (int)(trim(fgets(STDIN))); $of5 = ($numFor5 / 5); $of3 = ($numFor3 / 3); // echo $of3.PHP_EOL; // echo $of5.PHP_EOL; echo (int)(($of3 + $of5)*2).PHP_EOL;