結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,084 KB
testcase_01 AC 38 ms
52,848 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 38 ms
52,732 KB
testcase_04 AC 39 ms
53,248 KB
testcase_05 AC 39 ms
52,680 KB
testcase_06 AC 39 ms
53,508 KB
testcase_07 AC 40 ms
53,136 KB
testcase_08 AC 39 ms
51,944 KB
testcase_09 AC 39 ms
52,728 KB
testcase_10 AC 40 ms
52,324 KB
testcase_11 AC 38 ms
52,800 KB
testcase_12 AC 40 ms
52,424 KB
testcase_13 AC 42 ms
59,172 KB
testcase_14 AC 42 ms
58,688 KB
testcase_15 AC 44 ms
60,244 KB
testcase_16 AC 47 ms
66,508 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 57 ms
76,740 KB
testcase_21 AC 39 ms
52,332 KB
testcase_22 AC 39 ms
53,284 KB
testcase_23 AC 70 ms
89,124 KB
testcase_24 AC 71 ms
89,868 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 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