結果

問題 No.593 4進FizzBuzz
ユーザー syunsukesyunsuke
提出日時 2018-06-24 17:19:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 212 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 30,248 KB
最終ジャッジ日時 2024-06-30 22:32:33
合計ジャッジ時間 18,721 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 WA -
testcase_04 AC 32 ms
10,752 KB
testcase_05 WA -
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 29 ms
10,624 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,752 KB
testcase_11 AC 30 ms
10,752 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 29 ms
10,624 KB
testcase_15 AC 29 ms
10,624 KB
testcase_16 AC 859 ms
29,992 KB
testcase_17 AC 844 ms
30,120 KB
testcase_18 WA -
testcase_19 AC 873 ms
30,244 KB
testcase_20 AC 823 ms
30,044 KB
testcase_21 AC 858 ms
29,988 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 874 ms
29,996 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 AC 877 ms
30,244 KB
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 823 ms
30,124 KB
testcase_31 AC 851 ms
30,120 KB
testcase_32 AC 842 ms
30,120 KB
testcase_33 WA -
testcase_34 AC 866 ms
30,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
list1=[]
for i in range(len(n)):
    list1.append(int(n[i]))

if sum(list1)%6==0:
    print("FizzBuzz")
elif sum(list1)%2==0:
    print("Buzz")
elif sum(list1)%3==0:
    print("Fizz")
else:
    print(n)
0