結果

問題 No.944 煎っぞ!
ユーザー caleicalei
提出日時 2020-01-05 22:15:55
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 1,244 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 821,612 KB
最終ジャッジ日時 2024-11-22 23:35:53
合計ジャッジ時間 55,504 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 TLE -
testcase_04 AC 82 ms
15,304 KB
testcase_05 AC 66 ms
15,296 KB
testcase_06 AC 65 ms
15,552 KB
testcase_07 AC 65 ms
15,560 KB
testcase_08 MLE -
testcase_09 AC 151 ms
15,544 KB
testcase_10 AC 38 ms
10,752 KB
testcase_11 MLE -
testcase_12 MLE -
testcase_13 AC 38 ms
10,880 KB
testcase_14 MLE -
testcase_15 MLE -
testcase_16 WA -
testcase_17 AC 35 ms
10,752 KB
testcase_18 MLE -
testcase_19 MLE -
testcase_20 AC 83 ms
17,052 KB
testcase_21 AC 82 ms
16,924 KB
testcase_22 AC 69 ms
15,476 KB
testcase_23 AC 75 ms
15,400 KB
testcase_24 AC 72 ms
15,216 KB
testcase_25 MLE -
testcase_26 AC 74 ms
15,344 KB
testcase_27 MLE -
testcase_28 AC 39 ms
10,752 KB
testcase_29 WA -
testcase_30 MLE -
testcase_31 WA -
testcase_32 WA -
testcase_33 MLE -
testcase_34 MLE -
権限があれば一括ダウンロードができます

ソースコード

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

class BinarySearch:

    def __init__(self,arr,key,low,high):
        import sys
        sys.setrecursionlimit(10**7)
        
        self.arr=arr
        self.key=key
        self.low=low
        self.high=high
        self.size=len(self.arr)

    def search(self):
        mid=(self.high+self.low)//2
        
        if mid>=self.size or self.high<0:
            return -1

        if self.arr[mid]==self.key:
            return mid

        if self.high==self.low:return -1

        
        elif self.arr[mid]>self.key:
            self.high=mid-1
        else:
            self.low=mid+1
        return self.search()
        

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):
        bs=BinarySearch(A,d,0,len(A))
        res=bs.search()
        if res<0:break
    else:
        print(r)
        exit()
0