結果

問題 No.944 煎っぞ!
ユーザー terasaterasa
提出日時 2022-06-05 12:29:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 65 ms / 3,000 ms
コード長 1,302 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 83,056 KB
最終ジャッジ日時 2024-09-21 04:08:50
合計ジャッジ時間 3,717 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
81,336 KB
testcase_01 AC 63 ms
82,316 KB
testcase_02 AC 61 ms
81,064 KB
testcase_03 AC 61 ms
81,336 KB
testcase_04 AC 62 ms
80,784 KB
testcase_05 AC 61 ms
81,568 KB
testcase_06 AC 63 ms
80,924 KB
testcase_07 AC 65 ms
81,068 KB
testcase_08 AC 62 ms
81,224 KB
testcase_09 AC 62 ms
80,312 KB
testcase_10 AC 45 ms
63,208 KB
testcase_11 AC 49 ms
66,772 KB
testcase_12 AC 48 ms
64,500 KB
testcase_13 AC 42 ms
55,952 KB
testcase_14 AC 48 ms
65,976 KB
testcase_15 AC 48 ms
63,480 KB
testcase_16 AC 41 ms
56,304 KB
testcase_17 AC 41 ms
56,644 KB
testcase_18 AC 48 ms
66,552 KB
testcase_19 AC 49 ms
66,204 KB
testcase_20 AC 62 ms
81,792 KB
testcase_21 AC 64 ms
81,256 KB
testcase_22 AC 63 ms
80,636 KB
testcase_23 AC 63 ms
80,872 KB
testcase_24 AC 61 ms
80,456 KB
testcase_25 AC 59 ms
81,188 KB
testcase_26 AC 59 ms
81,436 KB
testcase_27 AC 61 ms
81,740 KB
testcase_28 AC 41 ms
55,036 KB
testcase_29 AC 41 ms
55,200 KB
testcase_30 AC 63 ms
81,760 KB
testcase_31 AC 60 ms
80,900 KB
testcase_32 AC 62 ms
81,852 KB
testcase_33 AC 64 ms
82,512 KB
testcase_34 AC 62 ms
83,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


def index_lt(a, x):
    'return largest index s.t. A[i] < x or -1 if it does not exist'
    return bisect.bisect_left(a, x) - 1


def index_le(a, x):
    'return largest index s.t. A[i] <= x or -1 if it does not exist'
    return bisect.bisect_right(a, x) - 1


def index_gt(a, x):
    'return smallest index s.t. A[i] > x or len(a) if it does not exist'
    return bisect.bisect_right(a, x)


def index_ge(a, x):
    'return smallest index s.t. A[i] >= x or len(a) if it does not exist'
    return bisect.bisect_left(a, x)


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

factors = []
for i in range(1, S + 1):
    if i * i > S:
        break
    if i * i == S:
        factors.append(i)
    elif S % i == 0:
        factors.append(i)
        factors.append(S // i)
factors.sort()

for f in factors:
    ans = 0
    acc = 0
    flag = True
    for a in A:
        acc += a
        if acc > f:
            flag = False
            break
        if acc == f:
            ans += 1
            acc = 0
    if flag is True:
        print(ans)
        break
0