結果

問題 No.933 おまわりさんこいつです
ユーザー FromBooskaFromBooska
提出日時 2023-09-21 20:20:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 148 ms / 2,000 ms
コード長 555 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 92,544 KB
最終ジャッジ日時 2024-07-07 13:51:27
合計ジャッジ時間 3,132 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,840 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
51,584 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 42 ms
51,584 KB
testcase_07 AC 42 ms
51,968 KB
testcase_08 AC 40 ms
51,840 KB
testcase_09 AC 41 ms
52,224 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 47 ms
58,240 KB
testcase_12 AC 51 ms
60,416 KB
testcase_13 AC 62 ms
67,328 KB
testcase_14 AC 64 ms
70,656 KB
testcase_15 AC 71 ms
75,520 KB
testcase_16 AC 86 ms
78,976 KB
testcase_17 AC 113 ms
86,016 KB
testcase_18 AC 41 ms
51,584 KB
testcase_19 AC 122 ms
89,216 KB
testcase_20 AC 116 ms
88,320 KB
testcase_21 AC 41 ms
51,456 KB
testcase_22 AC 41 ms
51,456 KB
testcase_23 AC 147 ms
92,544 KB
testcase_24 AC 148 ms
92,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Pi<10**18の多数の掛け算の桁和
# 筆算を考えれば、1つの数字の全桁の数*もう1つの数字の全桁の数
# 全組合せということは、1つの数字の桁和*もう1つの数字の桁和でも同じか
# やってみる

N = int(input())
P = list(map(int, input().split()))

def digit_sum(num):
    s = 0
    for n in str(num):
        s += int(n)
    return s

prod = 1
for i in range(N):
    prod *= digit_sum(P[i])
    prod = digit_sum(prod)
    #print(prod)

while prod >= 10:
    prod = digit_sum(prod)
print(prod)



0