結果

問題 No.77 レンガのピラミッド
ユーザー ntudantuda
提出日時 2024-05-28 21:40:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 50 ms / 5,000 ms
コード長 393 bytes
コンパイル時間 405 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 62,008 KB
最終ジャッジ日時 2024-12-20 20:54:57
合計ジャッジ時間 2,463 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,188 KB
testcase_01 AC 41 ms
52,776 KB
testcase_02 AC 39 ms
52,744 KB
testcase_03 AC 40 ms
53,956 KB
testcase_04 AC 39 ms
52,556 KB
testcase_05 AC 41 ms
52,964 KB
testcase_06 AC 49 ms
62,008 KB
testcase_07 AC 40 ms
52,960 KB
testcase_08 AC 50 ms
61,968 KB
testcase_09 AC 45 ms
60,296 KB
testcase_10 AC 47 ms
59,152 KB
testcase_11 AC 45 ms
59,284 KB
testcase_12 AC 46 ms
60,612 KB
testcase_13 AC 46 ms
60,300 KB
testcase_14 AC 47 ms
61,044 KB
testcase_15 AC 43 ms
59,284 KB
testcase_16 AC 42 ms
58,724 KB
testcase_17 AC 40 ms
52,612 KB
testcase_18 AC 47 ms
60,076 KB
testcase_19 AC 39 ms
52,892 KB
testcase_20 AC 41 ms
53,248 KB
testcase_21 AC 46 ms
60,744 KB
testcase_22 AC 42 ms
59,888 KB
testcase_23 AC 46 ms
60,380 KB
testcase_24 AC 41 ms
52,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
B = A[:]
for i in range(1,N):
    B[i] += B[i-1]
suma = sum(A)
x = int(suma ** 0.5)
y = 2 * x - 1
A = A + [0] * y
NA = len(A)
ans = 100 * 100
C = list(range(1,x+1)) + list(reversed(range(1,x))) + [0] * N

for i in range(NA - y + 1):
    tmp = 0
    for j in range(NA):
        tmp += max(0,A[j] - C[j - i])
    ans = min(ans,tmp)
print(ans)
0