結果

問題 No.944 煎っぞ!
ユーザー caleicalei
提出日時 2020-01-05 22:31:51
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 876 bytes
コンパイル時間 99 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 17,312 KB
最終ジャッジ日時 2024-11-22 23:36:19
合計ジャッジ時間 3,502 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
15,380 KB
testcase_01 AC 63 ms
15,508 KB
testcase_02 AC 62 ms
15,248 KB
testcase_03 AC 63 ms
15,384 KB
testcase_04 AC 68 ms
15,520 KB
testcase_05 AC 63 ms
15,256 KB
testcase_06 AC 62 ms
15,304 KB
testcase_07 AC 62 ms
15,516 KB
testcase_08 AC 63 ms
15,256 KB
testcase_09 AC 63 ms
15,508 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 38 ms
12,032 KB
testcase_12 AC 35 ms
11,392 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 38 ms
11,776 KB
testcase_15 AC 39 ms
11,264 KB
testcase_16 WA -
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 37 ms
11,904 KB
testcase_19 AC 37 ms
11,904 KB
testcase_20 AC 69 ms
16,764 KB
testcase_21 AC 69 ms
17,016 KB
testcase_22 AC 61 ms
15,324 KB
testcase_23 AC 61 ms
15,324 KB
testcase_24 AC 62 ms
15,200 KB
testcase_25 AC 64 ms
15,452 KB
testcase_26 AC 63 ms
15,452 KB
testcase_27 WA -
testcase_28 AC 31 ms
10,880 KB
testcase_29 WA -
testcase_30 AC 69 ms
17,312 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 2020/01/05
# 累積和

from itertools import accumulate

n=int(input())
a=list(map(int,input().split()))
A=list(accumulate(a))
sum_a=A[-1]
max_a=max(a)

def divisors(n):
    div=[]
    for i in range(1,int(n**0.5)+1):
        if n%i==0:
            div.append(i)
            if i!=n//i:
                div.append(n//i)
    div.sort(reverse=True)
    return div


def search(arr,key,low,high):
    
    while True:
        mid=(high+low)//2
        if mid>=len(arr) or high<0 or low>high:
            return -1

        if arr[mid]==key:
            return mid

        elif arr[mid]>key:
            high=mid-1
        else:
            low=mid+1
        

div=divisors(sum_a)
res=[i for i in div if i<=max_a]


for r in res:
    d=sum_a//r

    for d in range(d,sum_a+1,d):
        res=search(A,d,0,len(A))
        if res<0:break
    else:
        print(r)
        exit()
0