結果
| 問題 | No.637 X: Yet Another FizzBuzz Problem | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2021-12-06 18:51:21 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 218 bytes | 
| コンパイル時間 | 127 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-07-07 09:29:52 | 
| 合計ジャッジ時間 | 1,930 ms | 
| ジャッジサーバーID (参考情報) | judge3 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 2 | 
| other | RE * 30 | 
ソースコード
a = list(map(int,input().split()))
count = 0
for i in a:
    j = int(i)
    if j % 3 == 0:
        count += 4
    if j % 5 == 0:
        count += 4
    if j % 3 != 0 and j % 5 != 0:
        count += len(i)
print(count)
            
            
            
        