結果

問題 No.933 おまわりさんこいつです
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2019-11-29 22:06:56
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 220 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 312,776 KB
最終ジャッジ日時 2024-11-20 22:20:27
合計ジャッジ時間 17,716 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
57,216 KB
testcase_01 AC 39 ms
127,488 KB
testcase_02 AC 40 ms
57,344 KB
testcase_03 AC 41 ms
130,560 KB
testcase_04 AC 36 ms
57,344 KB
testcase_05 AC 36 ms
312,776 KB
testcase_06 AC 37 ms
56,960 KB
testcase_07 AC 36 ms
51,712 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 37 ms
51,968 KB
testcase_10 AC 37 ms
52,352 KB
testcase_11 AC 44 ms
58,240 KB
testcase_12 AC 56 ms
59,648 KB
testcase_13 AC 394 ms
75,392 KB
testcase_14 AC 779 ms
75,520 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 AC 68 ms
85,872 KB
testcase_18 AC 39 ms
51,968 KB
testcase_19 AC 134 ms
88,832 KB
testcase_20 TLE -
testcase_21 AC 36 ms
51,712 KB
testcase_22 AC 36 ms
51,328 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
p = list(map(int, input().split()))

k = 1
for x in p:
    k *= x

def f(x):
    res = 0
    while x > 0:
        res += x % 10
        x //= 10
    return res
    
while k >= 10:
    k = f(k)

print(k)
0