結果

問題 No.593 4進FizzBuzz
ユーザー yansi819yansi819
提出日時 2024-05-16 11:04:19
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 229 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 303,652 KB
最終ジャッジ日時 2024-12-20 10:52:14
合計ジャッジ時間 60,966 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,848 KB
testcase_01 AC 40 ms
58,844 KB
testcase_02 AC 39 ms
58,804 KB
testcase_03 AC 40 ms
301,432 KB
testcase_04 AC 41 ms
59,796 KB
testcase_05 AC 40 ms
300,448 KB
testcase_06 AC 40 ms
59,044 KB
testcase_07 AC 41 ms
302,708 KB
testcase_08 AC 40 ms
59,572 KB
testcase_09 AC 41 ms
301,712 KB
testcase_10 AC 41 ms
58,564 KB
testcase_11 AC 40 ms
303,652 KB
testcase_12 AC 41 ms
59,312 KB
testcase_13 AC 40 ms
301,548 KB
testcase_14 AC 40 ms
59,732 KB
testcase_15 AC 41 ms
302,220 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input().rstrip()
A = 0
for i in range(len(N)):
    A += int(N[::-1][i]) * pow(4, i)

if A % 3 == 0 and A % 5 == 0:
    print("FizzBuzz")
elif A % 3 == 0:
    print("Fizz")
elif A % 5 == 0:
    print("Buzz")
else:
    print(N)
0