結果

問題 No.77 レンガのピラミッド
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-21 19:58:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 5,000 ms
コード長 648 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 62,592 KB
最終ジャッジ日時 2024-06-22 22:52:19
合計ジャッジ時間 2,172 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 35 ms
51,712 KB
testcase_03 AC 36 ms
51,840 KB
testcase_04 AC 35 ms
51,712 KB
testcase_05 AC 35 ms
51,968 KB
testcase_06 AC 50 ms
61,568 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 53 ms
62,592 KB
testcase_09 AC 44 ms
58,880 KB
testcase_10 AC 43 ms
57,984 KB
testcase_11 AC 43 ms
59,008 KB
testcase_12 AC 49 ms
61,440 KB
testcase_13 AC 51 ms
62,080 KB
testcase_14 AC 50 ms
61,568 KB
testcase_15 AC 43 ms
58,752 KB
testcase_16 AC 38 ms
52,224 KB
testcase_17 AC 36 ms
52,352 KB
testcase_18 AC 49 ms
61,184 KB
testcase_19 AC 37 ms
51,968 KB
testcase_20 AC 37 ms
51,840 KB
testcase_21 AC 47 ms
60,288 KB
testcase_22 AC 42 ms
57,856 KB
testcase_23 AC 45 ms
59,776 KB
testcase_24 AC 36 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
s = sum(A)
ans = 10**18
for k in range(1, 101):
    if k**2 > s:
        break
    B = list(range(1, k))+list(range(k, 0, -1))
    #print(B)
    m = len(B)
    temp = 0
    if m >= n:
        for i in range(m):
            if 0 <= i < n:
                if A[i] < B[i]:
                    temp += B[i]-A[i]
            else:
                temp += B[i]
        temp += s-sum(B)
    else:
        for i in range(n):
            if 0 <= i < m:
                if A[i] < B[i]:
                    temp += B[i]-A[i]
        temp += s-sum(B)
    #print(temp, B)
    ans = min(ans, temp)
print(ans)
0