結果
問題 | No.311 z in FizzBuzzString |
ユーザー | clef_delph |
提出日時 | 2020-02-20 11:51:38 |
言語 | PHP (8.3.4) |
結果 |
TLE
|
実行時間 | - |
コード長 | 187 bytes |
コンパイル時間 | 343 ms |
コンパイル使用メモリ | 32,528 KB |
実行使用メモリ | 39,604 KB |
最終ジャッジ日時 | 2024-09-24 22:28:44 |
合計ジャッジ時間 | 3,379 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
39,604 KB |
testcase_01 | AC | 40 ms
32,400 KB |
testcase_02 | AC | 40 ms
32,532 KB |
testcase_03 | AC | 40 ms
32,400 KB |
testcase_04 | AC | 40 ms
32,656 KB |
testcase_05 | AC | 40 ms
32,400 KB |
testcase_06 | AC | 40 ms
32,528 KB |
testcase_07 | TLE | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
コンパイルメッセージ
No syntax errors detected in Main.php
ソースコード
<?php // $num=trim(fgets(STDIN)); $countZ=0; for($i=1;$i<=$num;$i++){ if($i%15==0){ $countZ+=4; }elseif($i%3==0||$i%5==0){ $countZ+=2; } } echo $countZ; ?>