結果

問題 No.919 You Are A Project Manager
ユーザー convexineqconvexineq
提出日時 2019-10-25 22:58:20
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,489 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,244 KB
実行使用メモリ 78,704 KB
最終ジャッジ日時 2024-09-13 06:47:29
合計ジャッジ時間 33,714 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 37 ms
53,000 KB
testcase_02 AC 37 ms
54,476 KB
testcase_03 AC 35 ms
53,312 KB
testcase_04 AC 77 ms
76,708 KB
testcase_05 AC 78 ms
76,912 KB
testcase_06 AC 42 ms
54,520 KB
testcase_07 AC 509 ms
77,080 KB
testcase_08 AC 99 ms
76,540 KB
testcase_09 AC 72 ms
70,280 KB
testcase_10 AC 122 ms
76,428 KB
testcase_11 AC 113 ms
76,376 KB
testcase_12 AC 38 ms
53,600 KB
testcase_13 AC 148 ms
76,388 KB
testcase_14 AC 40 ms
53,960 KB
testcase_15 AC 62 ms
66,880 KB
testcase_16 AC 216 ms
76,632 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 2,020 ms
78,080 KB
testcase_21 AC 946 ms
78,452 KB
testcase_22 AC 569 ms
76,768 KB
testcase_23 AC 548 ms
76,856 KB
testcase_24 AC 601 ms
76,840 KB
testcase_25 AC 570 ms
76,712 KB
testcase_26 WA -
testcase_27 AC 1,571 ms
77,848 KB
testcase_28 AC 2,300 ms
78,548 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 158 ms
78,064 KB
testcase_33 AC 661 ms
76,856 KB
testcase_34 AC 655 ms
76,960 KB
testcase_35 AC 2,388 ms
78,580 KB
testcase_36 AC 2,386 ms
78,624 KB
testcase_37 AC 2,388 ms
78,704 KB
testcase_38 AC 2,391 ms
78,692 KB
testcase_39 AC 37 ms
53,400 KB
testcase_40 AC 62 ms
67,372 KB
testcase_41 AC 40 ms
54,432 KB
testcase_42 AC 42 ms
55,584 KB
testcase_43 AC 52 ms
64,516 KB
testcase_44 AC 70 ms
68,888 KB
testcase_45 AC 41 ms
54,804 KB
testcase_46 AC 65 ms
68,956 KB
testcase_47 AC 569 ms
76,828 KB
testcase_48 AC 571 ms
76,836 KB
testcase_49 WA -
testcase_50 AC 566 ms
77,344 KB
testcase_51 AC 494 ms
76,832 KB
testcase_52 WA -
testcase_53 AC 498 ms
77,228 KB
testcase_54 AC 62 ms
67,792 KB
testcase_55 AC 39 ms
53,208 KB
testcase_56 AC 37 ms
53,804 KB
testcase_57 AC 37 ms
52,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!
def Eratosthenes(N): #N以下の素数のリストを返す
    #iが素数のときis_prime_list[i]=1,それ以外は0
    N+=1
    is_prime_list = [True]*N
#    is_prime_list[0], is_prime_list[1] = False, False #リストが必要なときはこの2行を有効化
#    for j in range(4,N,2): is_prime_list[j] = False
    m = int(N**0.5)+1
    for i in range(3,m,2):
        if is_prime_list[i]:
            is_prime_list[i*i::2*i]=[False]*((N-i*i-1)//(2*i)+1)
    return [2] + [i for i in range(3,N,2) if is_prime_list[i]]
#    return is_prime_list

import sys
#sys.setrecursionlimit(10**6)
readline = sys.stdin.readline 

n = int(input())
a = [int(i) for i in readline().split()]
ra = list(reversed(a))

from itertools import accumulate
primes = [1]+Eratosthenes(n)


def ans(k,a,ra):
    res1 = []
    R1 = [0]
    for i in range(k,n+1,k):
        l = a[i-k:i]
        l.sort()
        res1.append(l[(k+1)//2-1])
    for i in accumulate(res1):
        R1.append(max(R1[-1],i))

#    print(res1,R1)

    res2 = []
    R2 = [0]
    for i in range(k,n+1,k):
        l = ra[i-k:i]
        l.sort()
        res2.append(l[(k+1)//2-1])
    for i in accumulate(res2):
        R2.append(max(R2[-1],i))
#    print(res2,R2)
    
    res1 = R1
    res2 = R2
        
    res = 0    
    for r1,r2 in zip(res1,reversed(res2)):
        res = max(res,r1+r2)
#    print(res*k)
    return(res*k)

c = 0
for p in primes:
    c = max(c,ans(p,a,ra))

print(c)








0