結果
| 問題 | No.637 X: Yet Another FizzBuzz Problem |
| コンテスト | |
| ユーザー |
knt3110
|
| 提出日時 | 2018-05-05 11:32:19 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 235 bytes |
| 記録 | |
| コンパイル時間 | 281 ms |
| コンパイル使用メモリ | 21,540 KB |
| 実行使用メモリ | 20,776 KB |
| 最終ジャッジ日時 | 2026-07-31 13:47:51 |
| 合計ジャッジ時間 | 8,810 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 30 |
ソースコード
a=list(map(int,input().strip().split(" ")))
for i in range(len(a)):
if a[i]%3 and a[i]%5:
count+=8
elif a[i]%3:
count+=4
elif a[i]%5:
count+=4
else:
count+=len(str(a[i]))
print(count)
knt3110