結果

問題 No.933 おまわりさんこいつです
ユーザー GrayCoderGrayCoder
提出日時 2019-11-29 22:43:42
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 598 bytes
コンパイル時間 239 ms
コンパイル使用メモリ 82,428 KB
実行使用メモリ 146,244 KB
最終ジャッジ日時 2024-11-20 23:40:25
合計ジャッジ時間 10,482 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
62,692 KB
testcase_01 AC 45 ms
146,244 KB
testcase_02 AC 49 ms
62,608 KB
testcase_03 AC 47 ms
55,592 KB
testcase_04 AC 45 ms
55,552 KB
testcase_05 AC 45 ms
56,600 KB
testcase_06 AC 45 ms
56,320 KB
testcase_07 AC 47 ms
56,948 KB
testcase_08 AC 47 ms
55,956 KB
testcase_09 AC 52 ms
56,660 KB
testcase_10 AC 51 ms
56,316 KB
testcase_11 AC 54 ms
61,688 KB
testcase_12 AC 56 ms
62,832 KB
testcase_13 AC 62 ms
70,212 KB
testcase_14 AC 65 ms
73,916 KB
testcase_15 AC 101 ms
76,244 KB
testcase_16 AC 487 ms
79,252 KB
testcase_17 AC 85 ms
84,176 KB
testcase_18 AC 45 ms
56,540 KB
testcase_19 AC 107 ms
86,912 KB
testcase_20 AC 1,627 ms
85,468 KB
testcase_21 AC 44 ms
55,928 KB
testcase_22 AC 46 ms
56,712 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
from operator import mul
from sys import stdin


def main():
    input = lambda: stdin.readline()[:-1]
    N = int(input())
    P = map(int, input().split())

    def func(n):
        d, ret = 1, 0
        while 1:
            while d > 0:
                d, m = divmod(n, 10)
                ret += m
                n = d
            if ret < 10:
                return ret
            d, n = 1, ret
            ret = 0

    p = [func(i) for i in P]
    k = reduce(mul, p)
    ans = 10
    while ans > 9:
        ans = func(k)
        k = ans
    print(ans)


main()
0