結果

問題 No.944 煎っぞ!
ユーザー maspymaspy
提出日時 2023-07-22 15:46:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 567 ms / 3,000 ms
コード長 477 bytes
コンパイル時間 303 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 93,124 KB
最終ジャッジ日時 2024-09-22 15:28:37
合計ジャッジ時間 21,669 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 531 ms
48,816 KB
testcase_01 AC 529 ms
48,688 KB
testcase_02 AC 533 ms
48,624 KB
testcase_03 AC 524 ms
48,992 KB
testcase_04 AC 529 ms
49,092 KB
testcase_05 AC 519 ms
48,628 KB
testcase_06 AC 526 ms
48,992 KB
testcase_07 AC 529 ms
48,748 KB
testcase_08 AC 533 ms
48,636 KB
testcase_09 AC 533 ms
48,940 KB
testcase_10 AC 523 ms
44,572 KB
testcase_11 AC 529 ms
52,596 KB
testcase_12 AC 522 ms
48,544 KB
testcase_13 AC 512 ms
44,324 KB
testcase_14 AC 530 ms
52,968 KB
testcase_15 AC 524 ms
47,524 KB
testcase_16 AC 520 ms
44,580 KB
testcase_17 AC 518 ms
44,192 KB
testcase_18 AC 527 ms
52,920 KB
testcase_19 AC 534 ms
52,684 KB
testcase_20 AC 555 ms
93,036 KB
testcase_21 AC 555 ms
93,080 KB
testcase_22 AC 528 ms
47,392 KB
testcase_23 AC 527 ms
47,916 KB
testcase_24 AC 526 ms
47,780 KB
testcase_25 AC 531 ms
47,756 KB
testcase_26 AC 520 ms
47,760 KB
testcase_27 AC 567 ms
88,820 KB
testcase_28 AC 522 ms
44,704 KB
testcase_29 AC 511 ms
44,452 KB
testcase_30 AC 560 ms
93,124 KB
testcase_31 AC 523 ms
44,460 KB
testcase_32 AC 524 ms
44,456 KB
testcase_33 AC 540 ms
61,172 KB
testcase_34 AC 531 ms
59,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

import numpy as np

A = np.fromstring(read(), np.int64, sep=' ')[1:]

Acum = np.cumsum(A)

S = Acum[-1]
x = np.arange(1, int(S**.5)+1, dtype=np.int64)
div = x[S%x == 0]
div = np.union1d(div, S // div)

exists = np.zeros(S+1, np.bool_)
exists[Acum] = 1

for d in div:
    if np.all(exists[np.arange(d,S,d)]):
        answer = S // d
        break

print(answer)
0