結果

問題 No.593 4進FizzBuzz
ユーザー papinianuspapinianus
提出日時 2017-11-14 12:03:46
言語 PHP
(8.3.4)
結果
WA  
実行時間 -
コード長 233 bytes
コンパイル時間 64 ms
コンパイル使用メモリ 32,276 KB
実行使用メモリ 36,412 KB
最終ジャッジ日時 2024-05-03 21:26:35
合計ジャッジ時間 3,352 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
32,532 KB
testcase_01 AC 35 ms
32,400 KB
testcase_02 AC 40 ms
32,396 KB
testcase_03 WA -
testcase_04 AC 37 ms
32,272 KB
testcase_05 AC 36 ms
32,276 KB
testcase_06 AC 34 ms
32,276 KB
testcase_07 AC 34 ms
32,528 KB
testcase_08 AC 36 ms
32,272 KB
testcase_09 AC 38 ms
32,276 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 42 ms
32,276 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 38 ms
36,412 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 39 ms
36,280 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 38 ms
36,284 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 38 ms
36,156 KB
testcase_31 WA -
testcase_32 AC 41 ms
36,280 KB
testcase_33 AC 41 ms
36,276 KB
testcase_34 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
No syntax errors detected in Main.php

ソースコード

diff #

<?php
$p4 = trim(fgets(STDIN));
$num = base_convert(substr($p4, -2), 4, 10);
if($num % 15 === 0) { echo "FizzBuzz"; }
else if($num % 3 === 0) { echo "Fizz"; }
else if($num % 5 === 0) { echo "Buzz"; }
else { echo $p4; }
echo PHP_EOL;
0