結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,960 KB
testcase_01 AC 17 ms
7,812 KB
testcase_02 AC 15 ms
7,792 KB
testcase_03 AC 16 ms
7,844 KB
testcase_04 AC 16 ms
7,816 KB
testcase_05 AC 16 ms
7,848 KB
testcase_06 AC 16 ms
7,792 KB
testcase_07 AC 16 ms
7,784 KB
testcase_08 AC 16 ms
7,840 KB
testcase_09 AC 16 ms
7,932 KB
testcase_10 AC 15 ms
7,860 KB
testcase_11 AC 16 ms
7,804 KB
testcase_12 AC 15 ms
7,856 KB
testcase_13 AC 16 ms
7,796 KB
testcase_14 AC 16 ms
7,844 KB
testcase_15 WA -
testcase_16 RE -
testcase_17 WA -
testcase_18 RE -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 23 ms
11,856 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 RE -
testcase_25 RE -
testcase_26 WA -
testcase_27 RE -
testcase_28 RE -
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 23 ms
11,904 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for j in range(7):
    list1.append(int(n[j])*4**(6-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