結果

問題 No.933 おまわりさんこいつです
ユーザー AzumabashiAzumabashi
提出日時 2020-05-02 13:29:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 396 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 430,208 KB
最終ジャッジ日時 2024-06-09 11:34:54
合計ジャッジ時間 6,339 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
57,472 KB
testcase_01 AC 40 ms
51,328 KB
testcase_02 AC 42 ms
51,456 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 41 ms
51,712 KB
testcase_05 AC 39 ms
51,584 KB
testcase_06 AC 40 ms
51,968 KB
testcase_07 AC 39 ms
51,968 KB
testcase_08 AC 41 ms
51,456 KB
testcase_09 AC 41 ms
51,712 KB
testcase_10 AC 42 ms
51,968 KB
testcase_11 AC 50 ms
60,032 KB
testcase_12 AC 54 ms
61,952 KB
testcase_13 AC 82 ms
72,448 KB
testcase_14 AC 99 ms
77,952 KB
testcase_15 AC 171 ms
89,344 KB
testcase_16 AC 1,003 ms
179,968 KB
testcase_17 AC 84 ms
80,256 KB
testcase_18 AC 39 ms
51,840 KB
testcase_19 AC 102 ms
83,840 KB
testcase_20 TLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**6)


def get_digit_sum(n):
    if n < 10:
        return n
    else:
        return get_digit_sum(n % 10 + n // 10)


def main():
    length = int(input())
    sequence = [get_digit_sum(int(x)) for x in input().split()]
    product = 1
    for seq in sequence:
        product *= seq
    print(get_digit_sum(product))


if __name__ == '__main__':
    main()

0