結果

問題 No.933 おまわりさんこいつです
ユーザー GrayCoderGrayCoder
提出日時 2019-11-29 22:22:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 436 bytes
コンパイル時間 84 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,124 KB
最終ジャッジ日時 2024-11-20 23:30:00
合計ジャッジ時間 11,942 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
15,872 KB
testcase_01 AC 29 ms
23,384 KB
testcase_02 AC 28 ms
16,000 KB
testcase_03 AC 29 ms
31,124 KB
testcase_04 AC 28 ms
16,000 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,624 KB
testcase_08 AC 27 ms
10,624 KB
testcase_09 AC 28 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 30 ms
10,624 KB
testcase_13 AC 82 ms
10,880 KB
testcase_14 AC 130 ms
10,880 KB
testcase_15 AC 494 ms
11,264 KB
testcase_16 TLE -
testcase_17 AC 61 ms
16,220 KB
testcase_18 AC 29 ms
10,624 KB
testcase_19 AC 126 ms
17,160 KB
testcase_20 AC 663 ms
11,860 KB
testcase_21 AC 30 ms
10,624 KB
testcase_22 AC 26 ms
10,752 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())

    k = reduce(mul, P)
    ans, d = 0, 1
    while 1:
        while d > 0:
            d, m = divmod(k, 10)
            ans += m
            k = d
        if ans < 10:
            break
        d, k = 1, ans
        ans = 0
    print(ans)


main()
0