結果

問題 No.593 4進FizzBuzz
ユーザー ああいいああいい
提出日時 2021-12-29 21:39:08
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,178 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 45,768 KB
最終ジャッジ日時 2024-10-04 13:53:01
合計ジャッジ時間 23,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 28 ms
10,880 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 26 ms
10,880 KB
testcase_06 AC 25 ms
10,752 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 28 ms
10,624 KB
testcase_11 AC 27 ms
10,624 KB
testcase_12 AC 27 ms
10,752 KB
testcase_13 AC 26 ms
10,624 KB
testcase_14 AC 27 ms
10,880 KB
testcase_15 AC 26 ms
10,880 KB
testcase_16 AC 1,055 ms
45,692 KB
testcase_17 AC 1,065 ms
45,664 KB
testcase_18 AC 1,141 ms
45,620 KB
testcase_19 AC 1,121 ms
45,536 KB
testcase_20 AC 1,137 ms
45,760 KB
testcase_21 AC 1,178 ms
45,600 KB
testcase_22 AC 1,077 ms
45,628 KB
testcase_23 AC 1,037 ms
45,548 KB
testcase_24 AC 1,034 ms
45,532 KB
testcase_25 AC 1,118 ms
45,720 KB
testcase_26 AC 1,094 ms
45,632 KB
testcase_27 AC 1,072 ms
45,596 KB
testcase_28 AC 1,057 ms
45,424 KB
testcase_29 AC 1,087 ms
45,684 KB
testcase_30 AC 974 ms
45,552 KB
testcase_31 AC 976 ms
45,420 KB
testcase_32 AC 980 ms
45,708 KB
testcase_33 AC 1,121 ms
45,756 KB
testcase_34 AC 1,128 ms
45,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = input()
S = list(map(int,list(N)))

a = sum(S)
ans = ""
if a % 3 == 0:
    ans += 'Fizz'
b = 0
for i in range(len(S)):
    j = S[-i-1]
    if i & 1 == 0:
        b += j
    else:
        b -= j
if b % 5 == 0:
    ans += 'Buzz'
if ans == "":
    print(N)
else:
    print(ans)
0