結果
問題 |
No.637 X: Yet Another FizzBuzz Problem
|
ユーザー |
![]() |
提出日時 | 2019-04-27 12:42:42 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 30 ms / 1,000 ms |
コード長 | 273 bytes |
コンパイル時間 | 147 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-11-27 16:54:51 |
合計ジャッジ時間 | 2,254 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 30 |
ソースコード
numlist = input().split(" ") for i in range(len(numlist)): a = "" if int(numlist[i]) % 3 == 0: a += "Fizz" if int(numlist[i]) % 5 == 0: a += "Buzz" if a != "": numlist[i] = a lengthlist = [len(numlist[i]) for i in range(len(numlist))] print(sum(lengthlist))