結果

問題 No.944 煎っぞ!
ユーザー pekempeypekempey
提出日時 2019-12-07 00:08:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 79 ms / 3,000 ms
コード長 365 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 81,536 KB
最終ジャッジ日時 2024-06-06 12:36:14
合計ジャッジ時間 3,258 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
77,312 KB
testcase_01 AC 64 ms
77,056 KB
testcase_02 AC 62 ms
77,056 KB
testcase_03 AC 61 ms
77,184 KB
testcase_04 AC 62 ms
77,696 KB
testcase_05 AC 62 ms
77,568 KB
testcase_06 AC 63 ms
76,928 KB
testcase_07 AC 62 ms
77,568 KB
testcase_08 AC 64 ms
77,184 KB
testcase_09 AC 62 ms
77,184 KB
testcase_10 AC 44 ms
58,624 KB
testcase_11 AC 48 ms
62,208 KB
testcase_12 AC 46 ms
60,416 KB
testcase_13 AC 38 ms
51,584 KB
testcase_14 AC 49 ms
62,336 KB
testcase_15 AC 45 ms
60,032 KB
testcase_16 AC 37 ms
51,968 KB
testcase_17 AC 38 ms
51,712 KB
testcase_18 AC 48 ms
62,208 KB
testcase_19 AC 47 ms
61,952 KB
testcase_20 AC 64 ms
77,696 KB
testcase_21 AC 66 ms
78,080 KB
testcase_22 AC 64 ms
77,440 KB
testcase_23 AC 62 ms
77,056 KB
testcase_24 AC 64 ms
76,928 KB
testcase_25 AC 63 ms
77,312 KB
testcase_26 AC 63 ms
77,312 KB
testcase_27 AC 67 ms
78,208 KB
testcase_28 AC 40 ms
51,712 KB
testcase_29 AC 39 ms
51,712 KB
testcase_30 AC 64 ms
78,208 KB
testcase_31 AC 79 ms
81,536 KB
testcase_32 AC 68 ms
78,848 KB
testcase_33 AC 68 ms
78,336 KB
testcase_34 AC 68 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

def divs(n):
  i = 1
  while i * i <= n:
    if n % i == 0:
      yield i
      yield n // i
    i += 1

def check(x):
  i = 0
  while i < N:
    s = 0
    while i < N and s < x:
      s += A[i]
      i += 1
    if x != s: return False
  return True

S = sum(A)
print(max(d for d in divs(S) if check(S // d)))

0