結果

問題 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
コンパイル時間 93 ms
コンパイル使用メモリ 10,744 KB
実行使用メモリ 12,020 KB
最終ジャッジ日時 2023-09-13 08:38:14
合計ジャッジ時間 2,497 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,816 KB
testcase_01 AC 17 ms
7,768 KB
testcase_02 AC 16 ms
7,764 KB
testcase_03 AC 16 ms
7,800 KB
testcase_04 AC 15 ms
7,788 KB
testcase_05 AC 16 ms
7,744 KB
testcase_06 AC 15 ms
7,756 KB
testcase_07 AC 14 ms
7,800 KB
testcase_08 AC 14 ms
7,784 KB
testcase_09 AC 15 ms
7,912 KB
testcase_10 AC 14 ms
7,772 KB
testcase_11 AC 15 ms
7,776 KB
testcase_12 AC 15 ms
7,736 KB
testcase_13 AC 14 ms
7,804 KB
testcase_14 AC 15 ms
7,720 KB
testcase_15 AC 15 ms
7,864 KB
testcase_16 RE -
testcase_17 AC 22 ms
11,772 KB
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 22 ms
11,812 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 21 ms
11,812 KB
testcase_31 WA -
testcase_32 AC 22 ms
11,792 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