結果

問題 No.933 おまわりさんこいつです
ユーザー kohei2019kohei2019
提出日時 2022-01-04 21:48:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 198 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 91,108 KB
最終ジャッジ日時 2024-10-15 00:19:54
合計ジャッジ時間 3,279 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,632 KB
testcase_01 AC 37 ms
53,032 KB
testcase_02 AC 37 ms
52,484 KB
testcase_03 AC 38 ms
52,012 KB
testcase_04 AC 37 ms
52,084 KB
testcase_05 AC 37 ms
52,760 KB
testcase_06 AC 39 ms
54,336 KB
testcase_07 AC 38 ms
52,424 KB
testcase_08 AC 36 ms
52,564 KB
testcase_09 AC 38 ms
58,724 KB
testcase_10 AC 41 ms
60,492 KB
testcase_11 AC 55 ms
64,744 KB
testcase_12 AC 55 ms
68,648 KB
testcase_13 AC 83 ms
76,288 KB
testcase_14 AC 81 ms
76,288 KB
testcase_15 AC 87 ms
76,812 KB
testcase_16 AC 120 ms
79,184 KB
testcase_17 AC 43 ms
64,156 KB
testcase_18 AC 35 ms
52,248 KB
testcase_19 AC 47 ms
67,048 KB
testcase_20 AC 132 ms
85,724 KB
testcase_21 AC 35 ms
52,052 KB
testcase_22 AC 35 ms
52,208 KB
testcase_23 AC 245 ms
91,108 KB
testcase_24 AC 269 ms
90,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsP = input().split()
def func(p):
    ls = list(p)
    while len(ls) >= 2:
        wa = [int(a) for a in ls]
        ls = list(str(sum(wa)))
    return ls[0]
if '0' in lsP:
    print(0)
    exit()
ans = 1
for i in range(N):
    ans *= int(func(lsP[i]))
    ans = func(str(ans))
print(ans)
0