結果

問題 No.593 4進FizzBuzz
ユーザー syunsukesyunsuke
提出日時 2018-06-24 00:39:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 315 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 10,608 KB
実行使用メモリ 12,060 KB
最終ジャッジ日時 2023-09-13 08:38:10
合計ジャッジ時間 3,376 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
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 WA -
testcase_31 WA -
testcase_32 WA -
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