結果

問題 No.637 X: Yet Another FizzBuzz Problem
ユーザー Seha46041561Seha46041561
提出日時 2019-03-31 14:44:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 325 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 53,932 KB
最終ジャッジ日時 2024-11-21 16:02:41
合計ジャッジ時間 2,158 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,408 KB
testcase_01 AC 36 ms
52,088 KB
testcase_02 AC 35 ms
52,708 KB
testcase_03 AC 34 ms
53,500 KB
testcase_04 AC 37 ms
53,100 KB
testcase_05 AC 37 ms
53,144 KB
testcase_06 AC 34 ms
52,864 KB
testcase_07 AC 32 ms
52,568 KB
testcase_08 AC 33 ms
52,128 KB
testcase_09 AC 36 ms
52,732 KB
testcase_10 AC 37 ms
53,196 KB
testcase_11 AC 37 ms
52,208 KB
testcase_12 AC 34 ms
52,132 KB
testcase_13 AC 33 ms
53,304 KB
testcase_14 AC 35 ms
52,984 KB
testcase_15 AC 35 ms
52,676 KB
testcase_16 AC 36 ms
52,064 KB
testcase_17 AC 36 ms
52,400 KB
testcase_18 AC 37 ms
52,980 KB
testcase_19 AC 37 ms
53,932 KB
testcase_20 AC 35 ms
53,284 KB
testcase_21 AC 33 ms
52,964 KB
testcase_22 AC 34 ms
53,572 KB
testcase_23 AC 33 ms
53,696 KB
testcase_24 AC 36 ms
52,596 KB
testcase_25 AC 33 ms
52,772 KB
testcase_26 AC 33 ms
52,568 KB
testcase_27 AC 37 ms
52,732 KB
testcase_28 AC 38 ms
52,032 KB
testcase_29 AC 34 ms
52,320 KB
testcase_30 AC 35 ms
52,412 KB
testcase_31 AC 37 ms
52,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(map(int, input().split()))

risuto = []
for n in N:
    if n % 3 == 0 and n % 5 == 0:
        risuto.append('FizzBuzz')
    elif n % 3 == 0:
        risuto.append('Fizz')
    elif n % 5 == 0:
        risuto.append('Buzz')
    else:
        risuto.append(str(n))

ans = 0
for i in risuto:
    ans += len(i)
print(ans)
0