CF158D.Ice Sculptures

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Berland University is preparing to celebrate the 256-th anniversary of its founding! A specially appointed Vice Rector for the celebration prepares to decorate the campus. In the center of the campus nn ice sculptures were erected. The sculptures are arranged in a circle at equal distances from each other, so they form a regular nn -gon. They are numbered in clockwise order with numbers from 1 to nn .

The site of the University has already conducted a voting that estimated each sculpture's characteristic of tit_{i} — the degree of the sculpture's attractiveness. The values of tit_{i} can be positive, negative or zero.

When the university rector came to evaluate the work, he said that this might be not the perfect arrangement. He suggested to melt some of the sculptures so that:

  • the remaining sculptures form a regular polygon (the number of vertices should be between 3 and nn ),
  • the sum of the tit_{i} values of the remaining sculptures is maximized.

Help the Vice Rector to analyze the criticism — find the maximum value of tit_{i} sum which can be obtained in this way. It is allowed not to melt any sculptures at all. The sculptures can not be moved.

输入格式

The first input line contains an integer nn ( 3<=n<=200003<=n<=20000 ) — the initial number of sculptures. The second line contains a sequence of integers t1,t2,...,tnt_{1},t_{2},...,t_{n} , tit_{i} — the degree of the ii -th sculpture's attractiveness ( 1000<=ti<=1000-1000<=t_{i}<=1000 ). The numbers on the line are separated by spaces.

输出格式

Print the required maximum sum of the sculptures' attractiveness.

输入输出样例

  • 输入#1

    8
    1 2 -3 4 -5 5 2 3
    

    输出#1

    14
    
  • 输入#2

    6
    1 -2 3 -4 5 -6
    

    输出#2

    9
    
  • 输入#3

    6
    1 2 3 4 5 6
    

    输出#3

    21
    

说明/提示

In the first sample it is best to leave every second sculpture, that is, leave sculptures with attractivenesses: 2, 4, 5 и 3.

首页