結果
| 問題 | 
                            No.637 X: Yet Another FizzBuzz Problem
                             | 
                    
| コンテスト | |
| ユーザー | 
                             | 
                    
| 提出日時 | 2018-02-04 22:47:17 | 
| 言語 | Python3  (3.13.1 + numpy 2.2.1 + scipy 1.14.1)  | 
                    
| 結果 | 
                             
                                RE
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 221 bytes | 
| コンパイル時間 | 103 ms | 
| コンパイル使用メモリ | 12,672 KB | 
| 実行使用メモリ | 10,752 KB | 
| 最終ジャッジ日時 | 2024-06-30 04:05:29 | 
| 合計ジャッジ時間 | 2,149 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge3 / judge4 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | RE * 2 | 
| other | RE * 30 | 
ソースコード
list = map(int, input().split()) ans = 0 for i in range(len(list)): if list[i] % 15 == 0: ans = ans + 8 elif list[i] % 5 == 0: ans = ans + 4 elif list[i] % 3 == 0: ans = ans + 4 else: ans = ans + 1 print(ans)