結果
| 問題 | No.933 おまわりさんこいつです |
| コンテスト | |
| ユーザー |
c0degeek
|
| 提出日時 | 2019-11-29 23:03:56 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 129 bytes |
| 記録 | |
| コンパイル時間 | 680 ms |
| コンパイル使用メモリ | 20,824 KB |
| 実行使用メモリ | 31,512 KB |
| 最終ジャッジ日時 | 2026-05-15 05:21:12 |
| 合計ジャッジ時間 | 7,979 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 18 RE * 5 TLE * 1 -- * 1 |
ソースコード
n=int(input())
t=tuple(map(int,input().split()))
x=1
for i in t:
x*=i
while x>=10:
x=sum(int(i) for i in str(x))
print(x)
c0degeek