結果
問題 | No.311 z in FizzBuzzString |
ユーザー | kakts |
提出日時 | 2015-12-04 03:03:03 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 795 bytes |
コンパイル時間 | 84 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 12,032 KB |
最終ジャッジ日時 | 2024-09-24 21:15:02 |
合計ジャッジ時間 | 1,135 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
ソースコード
import argparse parser = argparse.ArgumentParser("fizz-buzz-string.py") parser.add_argument('number', metavar='N', type=int) args = parser.parse_args() print(args.number) def getFizzBuzzString(num): text = '' for i in range(num): cur = i + 1 print(cur) if ((cur % 15) == 0): text = text + 'FizzBuzz' elif ((cur % 5) == 0): print('a') text = text + 'Buzz' print(text) elif ((cur % 3) == 0): text = text + 'Fizz' else: text = text + str(i) print(text) return text def count(text): count = 0 for w in text: if w == 'z': count = count + 1 return count number = args.number text = getFizzBuzzString(number) print(count(text))