結果

問題 No.593 4進FizzBuzz
ユーザー maimai
提出日時 2017-08-03 10:19:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 323 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 81,936 KB
実行使用メモリ 79,232 KB
最終ジャッジ日時 2024-10-14 13:48:56
合計ジャッジ時間 4,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,564 KB
testcase_01 AC 39 ms
51,864 KB
testcase_02 AC 38 ms
53,596 KB
testcase_03 AC 37 ms
52,248 KB
testcase_04 AC 38 ms
52,348 KB
testcase_05 AC 38 ms
52,316 KB
testcase_06 AC 38 ms
52,204 KB
testcase_07 AC 38 ms
51,760 KB
testcase_08 AC 38 ms
52,336 KB
testcase_09 AC 38 ms
52,392 KB
testcase_10 AC 38 ms
52,712 KB
testcase_11 AC 39 ms
52,340 KB
testcase_12 AC 38 ms
52,088 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 37 ms
52,824 KB
testcase_15 AC 38 ms
52,456 KB
testcase_16 AC 86 ms
78,964 KB
testcase_17 AC 85 ms
79,192 KB
testcase_18 AC 85 ms
79,068 KB
testcase_19 AC 90 ms
79,052 KB
testcase_20 AC 85 ms
78,964 KB
testcase_21 AC 85 ms
78,880 KB
testcase_22 AC 88 ms
79,076 KB
testcase_23 AC 86 ms
79,096 KB
testcase_24 AC 85 ms
79,232 KB
testcase_25 AC 86 ms
78,832 KB
testcase_26 AC 87 ms
79,076 KB
testcase_27 AC 87 ms
79,076 KB
testcase_28 AC 87 ms
78,888 KB
testcase_29 AC 88 ms
79,120 KB
testcase_30 AC 86 ms
78,916 KB
testcase_31 AC 86 ms
79,036 KB
testcase_32 AC 86 ms
78,916 KB
testcase_33 AC 89 ms
79,108 KB
testcase_34 AC 86 ms
79,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

str = input()

odd = 0
even = 0
for i in range(len(str)):
    if (i%2 == 1): odd  += int(str[i]);
    else:          even += int(str[i]);


div5 = (odd - even) % 5 == 0
div3 = (odd + even) % 3 == 0

if (div5 and div3):
    print("FizzBuzz")
elif (div5):
    print("Buzz")
elif (div3):
    print("Fizz")
else:
    print(str)
0