結果

問題 No.933 おまわりさんこいつです
ユーザー neterukunneterukun
提出日時 2019-11-29 23:17:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 623 bytes
コンパイル時間 205 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 91,212 KB
最終ジャッジ日時 2024-11-20 23:51:08
合計ジャッジ時間 2,268 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,900 KB
testcase_01 AC 39 ms
53,088 KB
testcase_02 AC 39 ms
53,836 KB
testcase_03 AC 41 ms
52,692 KB
testcase_04 AC 40 ms
52,620 KB
testcase_05 AC 39 ms
52,516 KB
testcase_06 AC 39 ms
52,276 KB
testcase_07 AC 40 ms
52,144 KB
testcase_08 AC 41 ms
52,368 KB
testcase_09 AC 41 ms
52,364 KB
testcase_10 AC 39 ms
53,428 KB
testcase_11 AC 39 ms
52,424 KB
testcase_12 AC 39 ms
53,164 KB
testcase_13 AC 46 ms
61,124 KB
testcase_14 AC 47 ms
62,228 KB
testcase_15 AC 48 ms
62,732 KB
testcase_16 AC 54 ms
68,332 KB
testcase_17 AC 61 ms
76,860 KB
testcase_18 AC 40 ms
52,312 KB
testcase_19 AC 64 ms
81,844 KB
testcase_20 AC 63 ms
80,236 KB
testcase_21 AC 39 ms
52,140 KB
testcase_22 AC 39 ms
52,888 KB
testcase_23 AC 77 ms
91,212 KB
testcase_24 AC 73 ms
90,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

cnt = 0
for i in range(n):
    if p[i] % 9 == 0:
        cnt += 2
    elif p[i] % 3 == 0:
        cnt += 1
    if p[i] == 0:
        print(0)
        exit()
if cnt >= 2:
    print(9)
    exit()
    
n = len(p)
while True:
    tmp = []
    if len(p) % 2 == 1:
        tmp.append(p[-1])
    for i in range(n//2):
        tmp.append(p[2*i]*p[2*i+1])
    p = tmp[0:]
    n = len(p)
    if n == 1:
        ans = p[0]
        break

while True:
    if len(str(ans)) == 1:
        print(ans)
        break
    tmp = 0
    for i in str(ans):
        tmp += int(i)
    ans = tmp
0