結果
問題 | No.77 レンガのピラミッド |
ユーザー | gorugo30 |
提出日時 | 2021-02-26 17:31:55 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 48 ms / 5,000 ms |
コード長 | 481 bytes |
コンパイル時間 | 292 ms |
コンパイル使用メモリ | 82,496 KB |
実行使用メモリ | 64,276 KB |
最終ジャッジ日時 | 2024-10-02 09:09:41 |
合計ジャッジ時間 | 1,949 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
52,808 KB |
testcase_01 | AC | 33 ms
52,460 KB |
testcase_02 | AC | 32 ms
52,600 KB |
testcase_03 | AC | 33 ms
53,496 KB |
testcase_04 | AC | 32 ms
52,872 KB |
testcase_05 | AC | 32 ms
52,564 KB |
testcase_06 | AC | 48 ms
64,276 KB |
testcase_07 | AC | 32 ms
53,028 KB |
testcase_08 | AC | 44 ms
62,160 KB |
testcase_09 | AC | 39 ms
59,932 KB |
testcase_10 | AC | 40 ms
60,060 KB |
testcase_11 | AC | 40 ms
60,692 KB |
testcase_12 | AC | 42 ms
63,208 KB |
testcase_13 | AC | 43 ms
63,024 KB |
testcase_14 | AC | 41 ms
62,056 KB |
testcase_15 | AC | 37 ms
59,280 KB |
testcase_16 | AC | 33 ms
53,624 KB |
testcase_17 | AC | 32 ms
53,200 KB |
testcase_18 | AC | 42 ms
62,416 KB |
testcase_19 | AC | 32 ms
52,456 KB |
testcase_20 | AC | 32 ms
52,744 KB |
testcase_21 | AC | 40 ms
61,096 KB |
testcase_22 | AC | 37 ms
59,208 KB |
testcase_23 | AC | 41 ms
61,888 KB |
testcase_24 | AC | 32 ms
53,008 KB |
ソースコード
N = int(input()) A = list(map(int, input().split())) height = 1 ans = 190000190129219 while height * height <= sum(A): targ = [min(i + 1, 2 * height - 1 - i) for i in range(2 * height - 1)] sute = 0 for i in range(2 * height - 1): if i < N: a = A[i] else: a = 0 if a > targ[i]: sute += a - targ[i] for i in range(2 * height - 1, N): sute += A[i] ans = min(ans, sute) height += 1 print(ans)