結果

問題 No.944 煎っぞ!
ユーザー takakintakakin
提出日時 2020-06-29 21:58:23
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 104 ms / 3,000 ms
コード長 546 bytes
コンパイル時間 67 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 22,216 KB
最終ジャッジ日時 2024-07-19 06:00:03
合計ジャッジ時間 4,190 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
21,896 KB
testcase_01 AC 86 ms
22,024 KB
testcase_02 AC 92 ms
22,140 KB
testcase_03 AC 83 ms
22,148 KB
testcase_04 AC 84 ms
22,164 KB
testcase_05 AC 83 ms
22,028 KB
testcase_06 AC 84 ms
22,156 KB
testcase_07 AC 81 ms
22,032 KB
testcase_08 AC 83 ms
22,024 KB
testcase_09 AC 82 ms
22,152 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 42 ms
14,464 KB
testcase_12 AC 32 ms
11,904 KB
testcase_13 AC 24 ms
10,624 KB
testcase_14 AC 38 ms
14,464 KB
testcase_15 AC 31 ms
11,520 KB
testcase_16 AC 25 ms
10,624 KB
testcase_17 AC 25 ms
10,496 KB
testcase_18 AC 39 ms
14,336 KB
testcase_19 AC 39 ms
14,336 KB
testcase_20 AC 95 ms
22,212 KB
testcase_21 AC 93 ms
22,216 KB
testcase_22 AC 85 ms
22,036 KB
testcase_23 AC 86 ms
22,040 KB
testcase_24 AC 85 ms
22,164 KB
testcase_25 AC 91 ms
22,164 KB
testcase_26 AC 85 ms
22,044 KB
testcase_27 AC 88 ms
21,860 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 24 ms
10,496 KB
testcase_30 AC 88 ms
22,152 KB
testcase_31 AC 104 ms
22,168 KB
testcase_32 AC 85 ms
22,164 KB
testcase_33 AC 97 ms
21,948 KB
testcase_34 AC 98 ms
22,140 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n=int(input())
A=[int(i) for i in input().split()]
AA=[0]
for a in A:
  AA.append(AA[-1]+a)
AA=set(AA)

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

  divisors.sort()
  return divisors

s=sum(A)
D=make_divisors(s)
for d in D:
  mult=1
  while mult*d<s:
    if mult*d in AA:
      mult+=1
      continue
    else:
      break
  else:
    print(s//d)
    break
else:
  print(1)
0