結果
| 問題 | No.637 X: Yet Another FizzBuzz Problem | 
| コンテスト | |
| ユーザー |  akasatananana | 
| 提出日時 | 2019-09-18 14:10:51 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 188 bytes | 
| コンパイル時間 | 289 ms | 
| コンパイル使用メモリ | 12,544 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-07-08 03:07:13 | 
| 合計ジャッジ時間 | 2,525 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 2 | 
| other | RE * 30 | 
ソースコード
a=[int(i) for i in input().split()]
b=0
for i in a:
    if (int(i)%3==0) and (int(i)%5==0):
        b+=8
    elif (int(i)%3==0) or (int(i)%5==0):
        b+=4
    else:
        b+=len(i)
            
            
            
        