結果

問題 No.77 レンガのピラミッド
ユーザー pekempeypekempey
提出日時 2015-12-20 22:18:49
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 96 ms / 5,000 ms
コード長 386 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 76,300 KB
実行使用メモリ 77,584 KB
最終ジャッジ日時 2024-09-17 12:22:19
合計ジャッジ時間 3,223 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
76,068 KB
testcase_01 AC 78 ms
76,440 KB
testcase_02 AC 79 ms
76,188 KB
testcase_03 AC 77 ms
76,040 KB
testcase_04 AC 78 ms
76,172 KB
testcase_05 AC 77 ms
75,404 KB
testcase_06 AC 96 ms
77,496 KB
testcase_07 AC 79 ms
75,940 KB
testcase_08 AC 95 ms
77,560 KB
testcase_09 AC 88 ms
77,088 KB
testcase_10 AC 87 ms
77,248 KB
testcase_11 AC 89 ms
77,200 KB
testcase_12 AC 96 ms
77,584 KB
testcase_13 AC 94 ms
77,564 KB
testcase_14 AC 96 ms
77,356 KB
testcase_15 AC 86 ms
76,964 KB
testcase_16 AC 87 ms
77,460 KB
testcase_17 AC 82 ms
76,220 KB
testcase_18 AC 95 ms
77,348 KB
testcase_19 AC 81 ms
76,348 KB
testcase_20 AC 80 ms
76,044 KB
testcase_21 AC 91 ms
76,964 KB
testcase_22 AC 87 ms
76,936 KB
testcase_23 AC 93 ms
77,484 KB
testcase_24 AC 79 ms
76,444 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = input()
a = map(int, raw_input().split())
total = sum(a)

h = 1
ans = float('inf')
while h * h <= total:
	c = h - 1
	low = 0
	high = 0
	for i in xrange(1000):
		y = max(0, (i - c) + h if i <= c else -(i - c) + h)
		if 0 <= i and i < n:
			if a[i] < y:
				low += y - a[i]
			elif a[i] > y:
				high += a[i] - y
		else:
			low += y
	ans = min(ans, max(low, high))
	h += 1

print ans
0