結果

問題 No.933 おまわりさんこいつです
ユーザー edamame882
提出日時 2019-11-29 23:20:56
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 232 bytes
コンパイル時間 88 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,436 KB
最終ジャッジ日時 2024-11-20 23:51:49
合計ジャッジ時間 8,494 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 18 RE * 5 TLE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

from sys import stdin

n = int(stdin.readline().rstrip())
a = list(map(int,stdin.readline().rstrip().split()))
tmp=1
for i in range(n) :
    tmp *= a[i]
        
while tmp>9:
    tmp = sum(list(map(int, str(tmp))))
    
print(tmp)

0