結果

問題 No.311 z in FizzBuzzString
ユーザー excnctexcnct
提出日時 2024-12-22 05:18:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 556 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-12-22 05:18:40
合計ジャッジ時間 1,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    n = int(input())
    nums = list(range(1, n + 1))

    print(nums)

    for i in range(len(nums)):
        if nums[i] % 3 == 0 and nums[i] % 5 == 0:
            nums[i] = "FizzBuzz"
        elif nums[i] % 3 == 0:
            nums[i] = "Fizz"
        elif nums[i] % 5 == 0:
            nums[i] = "Buzz"
        else:
            nums[i] = str(nums[i])

    str_nums = "".join(nums)
    print(str_nums)

    count = 0
    for j in str_nums:
        if j == "z":
            count += 1

    print(count)


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