結果

問題 No.933 おまわりさんこいつです
ユーザー fuppy_kyoprofuppy_kyopro
提出日時 2019-11-29 21:45:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 220 bytes
コンパイル時間 223 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 32,316 KB
最終ジャッジ日時 2024-11-20 21:47:54
合計ジャッジ時間 13,058 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
17,312 KB
testcase_01 AC 30 ms
24,228 KB
testcase_02 AC 30 ms
17,440 KB
testcase_03 AC 30 ms
32,316 KB
testcase_04 AC 30 ms
17,440 KB
testcase_05 AC 30 ms
10,496 KB
testcase_06 AC 29 ms
10,496 KB
testcase_07 AC 30 ms
10,496 KB
testcase_08 AC 31 ms
10,368 KB
testcase_09 AC 30 ms
10,496 KB
testcase_10 AC 30 ms
10,496 KB
testcase_11 AC 31 ms
10,624 KB
testcase_12 AC 34 ms
10,752 KB
testcase_13 AC 124 ms
10,880 KB
testcase_14 AC 224 ms
11,008 KB
testcase_15 AC 950 ms
11,520 KB
testcase_16 TLE -
testcase_17 AC 71 ms
18,272 KB
testcase_18 AC 30 ms
10,496 KB
testcase_19 AC 142 ms
20,396 KB
testcase_20 AC 1,051 ms
12,356 KB
testcase_21 AC 30 ms
10,368 KB
testcase_22 AC 30 ms
10,624 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