結果
| 問題 | No.637 X: Yet Another FizzBuzz Problem |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2018-02-04 23:39:21 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 209 bytes |
| 記録 | |
| コンパイル時間 | 291 ms |
| コンパイル使用メモリ | 21,280 KB |
| 実行使用メモリ | 20,640 KB |
| 最終ジャッジ日時 | 2026-08-02 04:50:07 |
| 合計ジャッジ時間 | 9,304 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | RE * 2 |
| other | RE * 30 |
ソースコード
list = map(int, input().split()) ans = 0 for i in 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)