結果

問題 No.933 おまわりさんこいつです
ユーザー yuly3yuly3
提出日時 2020-01-07 09:50:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 296 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 96,516 KB
最終ジャッジ日時 2024-11-23 00:34:28
合計ジャッジ時間 20,932 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 510 ms
49,184 KB
testcase_01 AC 515 ms
96,516 KB
testcase_02 AC 509 ms
49,820 KB
testcase_03 AC 511 ms
43,804 KB
testcase_04 AC 510 ms
44,184 KB
testcase_05 AC 510 ms
44,440 KB
testcase_06 AC 538 ms
43,928 KB
testcase_07 AC 514 ms
43,928 KB
testcase_08 AC 513 ms
44,188 KB
testcase_09 AC 510 ms
44,188 KB
testcase_10 AC 511 ms
44,296 KB
testcase_11 AC 515 ms
44,316 KB
testcase_12 AC 513 ms
44,048 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 AC 547 ms
48,416 KB
testcase_18 AC 514 ms
44,196 KB
testcase_19 AC 615 ms
49,792 KB
testcase_20 RE -
testcase_21 AC 514 ms
44,228 KB
testcase_22 AC 511 ms
44,180 KB
testcase_23 TLE -
testcase_24 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np


def solve():
    N, *P = map(int, open(0).read().split())

    K = 1
    for p in P:
        K *= p
    K = str(K)
    while len(K) != 1:
        num = 0
        for k in K:
            num += int(k)
        K = str(num)
    print(K)


if __name__ == '__main__':
    solve()
0