結果

問題 No.77 レンガのピラミッド
ユーザー mlihua09mlihua09
提出日時 2020-09-17 02:25:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 5,000 ms
コード長 401 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 62,220 KB
最終ジャッジ日時 2024-06-22 03:55:03
合計ジャッジ時間 1,841 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,224 KB
testcase_01 AC 36 ms
51,880 KB
testcase_02 AC 33 ms
53,828 KB
testcase_03 AC 34 ms
52,288 KB
testcase_04 AC 34 ms
52,532 KB
testcase_05 AC 33 ms
52,556 KB
testcase_06 AC 43 ms
62,220 KB
testcase_07 AC 34 ms
52,092 KB
testcase_08 AC 42 ms
61,936 KB
testcase_09 AC 36 ms
57,540 KB
testcase_10 AC 35 ms
58,340 KB
testcase_11 AC 40 ms
57,756 KB
testcase_12 AC 42 ms
60,324 KB
testcase_13 AC 42 ms
61,324 KB
testcase_14 AC 42 ms
61,824 KB
testcase_15 AC 37 ms
58,092 KB
testcase_16 AC 33 ms
52,832 KB
testcase_17 AC 33 ms
53,140 KB
testcase_18 AC 39 ms
60,308 KB
testcase_19 AC 34 ms
53,280 KB
testcase_20 AC 33 ms
52,288 KB
testcase_21 AC 40 ms
59,900 KB
testcase_22 AC 36 ms
58,864 KB
testcase_23 AC 37 ms
59,280 KB
testcase_24 AC 32 ms
53,252 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N = int(input())

A = list(map(int, input().split())) + [0] * N

a = sum(A)

ans = a - 1
for i in range(1, N):
    if (i + 1) ** 2 > a:
        break
    
    ans = min(ans, sum([A[j] - j - 1 if A[j] > j else 0 for j in range(i)]) + sum([A[j] - 2 * i - 1 + j if A[j] > 2 * i - j else 0 for j in range(i, 2 * i + 1)]) + sum([A[j] for j in range(2 * i + 1, 2 * N)]))

    
print(ans)
        
        
0