結果

問題 No.944 煎っぞ!
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-09-16 00:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 3,000 ms
コード長 1,009 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 118,272 KB
最終ジャッジ日時 2024-09-16 00:05:13
合計ジャッジ時間 4,120 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
81,920 KB
testcase_01 AC 65 ms
82,176 KB
testcase_02 AC 65 ms
82,304 KB
testcase_03 AC 65 ms
82,560 KB
testcase_04 AC 65 ms
82,688 KB
testcase_05 AC 64 ms
82,304 KB
testcase_06 AC 63 ms
82,304 KB
testcase_07 AC 65 ms
82,304 KB
testcase_08 AC 71 ms
82,176 KB
testcase_09 AC 63 ms
82,176 KB
testcase_10 AC 44 ms
60,032 KB
testcase_11 AC 52 ms
70,656 KB
testcase_12 AC 49 ms
65,792 KB
testcase_13 AC 39 ms
52,224 KB
testcase_14 AC 53 ms
71,040 KB
testcase_15 AC 49 ms
64,512 KB
testcase_16 AC 40 ms
51,968 KB
testcase_17 AC 40 ms
52,096 KB
testcase_18 AC 52 ms
70,912 KB
testcase_19 AC 52 ms
70,656 KB
testcase_20 AC 90 ms
118,144 KB
testcase_21 AC 91 ms
118,272 KB
testcase_22 AC 65 ms
81,664 KB
testcase_23 AC 64 ms
81,664 KB
testcase_24 AC 71 ms
81,792 KB
testcase_25 AC 62 ms
81,408 KB
testcase_26 AC 62 ms
81,024 KB
testcase_27 AC 88 ms
114,688 KB
testcase_28 AC 40 ms
52,224 KB
testcase_29 AC 39 ms
52,224 KB
testcase_30 AC 89 ms
117,632 KB
testcase_31 AC 64 ms
78,848 KB
testcase_32 AC 64 ms
79,232 KB
testcase_33 AC 72 ms
92,628 KB
testcase_34 AC 83 ms
91,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/944

import math

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

    # 解答候補を出す
    sum_a = sum(A)
    max_a = max(A)
    sqrt_sum_a = int(math.sqrt(sum_a))
    candidates = []
    for p in range(1, sqrt_sum_a + 1):
        if sum_a % p == 0:
            q = sum_a // p
            if q >= max_a:
                candidates.append(p)

            if q != p and p >= max_a:
                candidates.append(q)
    candidates.sort()

    # 累積和と
    array = [-1] * (sum_a + 1)
    cumsum_a = 0
    for i in range(N):
        cumsum_a += A[i]
        array[cumsum_a] = i

    answer = 1
    for p in candidates:
        if p <= 1:
            continue

        q = sum_a // p
        is_ok = True
        for j in range(p):
            if array[(j + 1) * q] == -1:
                is_ok = False
                break
        if is_ok:
            answer = p
    
    print(answer)


    



if __name__ == "__main__":
    main()
0