結果

問題 No.933 おまわりさんこいつです
ユーザー Programmerryoki
提出日時 2019-11-29 21:54:57
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 131 bytes
コンパイル時間 311 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 87,292 KB
最終ジャッジ日時 2024-11-20 22:02:23
合計ジャッジ時間 2,878 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 6 WA * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

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)
0