結果

問題 No.593 4進FizzBuzz
ユーザー syunsukesyunsuke
提出日時 2018-06-24 00:40:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 316 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,708 KB
最終ジャッジ日時 2024-06-30 18:34:53
合計ジャッジ時間 2,669 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 29 ms
10,880 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 29 ms
10,880 KB
testcase_06 AC 30 ms
10,752 KB
testcase_07 AC 29 ms
10,752 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,752 KB
testcase_13 AC 29 ms
10,752 KB
testcase_14 AC 30 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 RE -
testcase_17 AC 37 ms
14,708 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 37 ms
14,580 KB
testcase_22 RE -
testcase_23 RE -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 AC 37 ms
14,580 KB
testcase_31 WA -
testcase_32 AC 37 ms
14,580 KB
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
list1=[]
for i in range(8):
    if len(n)<=7:
        n="0"*(8-len(n))+n
#print(n)

for j in range(8):
    list1.append(int(n[j])*4**(7-j))
#print(sum(list1))

if sum(list1)%15==0:
    print("FizzBuzz")
elif sum(list1)%5==0:
    print("Buzz")
elif sum(list1)%3==0:
    print("Fizz")
else:
    print(int(n))
0