結果

問題 No.77 レンガのピラミッド
ユーザー 👑 rin204rin204
提出日時 2022-01-20 11:36:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 290 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,252 KB
実行使用メモリ 53,856 KB
最終ジャッジ日時 2024-11-23 14:29:21
合計ジャッジ時間 2,241 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,704 KB
testcase_01 AC 36 ms
52,788 KB
testcase_02 AC 36 ms
52,584 KB
testcase_03 AC 37 ms
52,772 KB
testcase_04 AC 36 ms
52,868 KB
testcase_05 AC 36 ms
52,200 KB
testcase_06 AC 36 ms
53,440 KB
testcase_07 AC 39 ms
52,032 KB
testcase_08 AC 35 ms
52,944 KB
testcase_09 AC 36 ms
53,856 KB
testcase_10 AC 35 ms
53,276 KB
testcase_11 AC 35 ms
53,100 KB
testcase_12 AC 36 ms
52,724 KB
testcase_13 AC 37 ms
52,064 KB
testcase_14 AC 36 ms
53,668 KB
testcase_15 AC 38 ms
52,340 KB
testcase_16 AC 39 ms
52,812 KB
testcase_17 AC 37 ms
52,216 KB
testcase_18 AC 37 ms
53,148 KB
testcase_19 AC 37 ms
52,664 KB
testcase_20 AC 38 ms
52,832 KB
testcase_21 AC 36 ms
52,684 KB
testcase_22 AC 36 ms
52,396 KB
testcase_23 AC 37 ms
52,128 KB
testcase_24 AC 36 ms
53,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))
i = 1
tot = sum(A)
while i * i <= tot:
    i += 1
i -= 1
A += [0] * 100
ans = 0
for j in range(i):
    ans += max(0, A[j] - (j + 1))
    
for j in range(i, 2 * i - 1):
    ans += max(0, A[j] - (2 * i - j - 1))
print(ans + sum(A[2*i-1:]))
0