結果

問題 No.593 4進FizzBuzz
ユーザー ThetaTheta
提出日時 2022-10-19 18:07:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 666 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 36,176 KB
最終ジャッジ日時 2024-06-29 20:03:52
合計ジャッジ時間 15,673 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 24 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,496 KB
testcase_05 AC 24 ms
10,752 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 24 ms
10,752 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 24 ms
10,624 KB
testcase_10 AC 24 ms
10,624 KB
testcase_11 AC 25 ms
10,752 KB
testcase_12 AC 26 ms
10,624 KB
testcase_13 AC 25 ms
10,624 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 653 ms
35,948 KB
testcase_17 AC 655 ms
35,952 KB
testcase_18 AC 662 ms
35,928 KB
testcase_19 AC 661 ms
36,100 KB
testcase_20 AC 650 ms
35,860 KB
testcase_21 AC 660 ms
35,852 KB
testcase_22 AC 666 ms
36,024 KB
testcase_23 AC 649 ms
35,840 KB
testcase_24 AC 655 ms
36,168 KB
testcase_25 AC 656 ms
36,144 KB
testcase_26 AC 656 ms
36,040 KB
testcase_27 AC 659 ms
35,852 KB
testcase_28 AC 647 ms
36,168 KB
testcase_29 AC 649 ms
36,176 KB
testcase_30 AC 629 ms
35,884 KB
testcase_31 AC 634 ms
35,968 KB
testcase_32 AC 644 ms
36,000 KB
testcase_33 AC 666 ms
36,032 KB
testcase_34 AC 653 ms
35,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from re import X


def is_5_divisor_base_4(num_base4: str) -> bool:
    odd_sum = sum(map(int, list(num_base4)[::2]))
    even_sum = sum(map(int, list(num_base4)[1::2]))
    return (odd_sum - even_sum) % 5 == 0


def is_3_divisor_base_4(num_base4: str) -> bool:
    return sum(map(int, list(num_base4))) % 3 == 0


def main():
    N = input()
    printed = False
    if is_3_divisor_base_4(N):
        print("Fizz", end="")
        printed = True
    if is_5_divisor_base_4(N):
        print("Buzz", end="")
        printed = True

    if not printed:
        print(N, end="")
    print()


if __name__ == "__main__":
    main()
0