結果
| 問題 | No.933 おまわりさんこいつです |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-11-29 21:54:57 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 131 bytes |
| 記録 | |
| コンパイル時間 | 232 ms |
| コンパイル使用メモリ | 85,120 KB |
| 実行使用メモリ | 93,056 KB |
| 最終ジャッジ日時 | 2026-05-15 03:24:07 |
| 合計ジャッジ時間 | 3,267 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 6 WA * 19 |
ソースコード
n = int(input())
s = [int(i) for i in input().split()]
c = 1
for a in s:
c *= a
c = sum([int(i) for i in str(c)])
print(c)