結果

問題 No.77 レンガのピラミッド
ユーザー maimai
提出日時 2017-05-22 07:41:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 85 ms / 5,000 ms
コード長 458 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,108 KB
最終ジャッジ日時 2024-09-19 09:02:16
合計ジャッジ時間 3,041 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
71,296 KB
testcase_01 AC 58 ms
70,272 KB
testcase_02 AC 59 ms
71,936 KB
testcase_03 AC 56 ms
70,528 KB
testcase_04 AC 54 ms
69,504 KB
testcase_05 AC 57 ms
69,504 KB
testcase_06 AC 85 ms
75,776 KB
testcase_07 AC 57 ms
71,040 KB
testcase_08 AC 85 ms
75,776 KB
testcase_09 AC 67 ms
75,788 KB
testcase_10 AC 68 ms
76,032 KB
testcase_11 AC 70 ms
75,884 KB
testcase_12 AC 77 ms
75,776 KB
testcase_13 AC 79 ms
75,904 KB
testcase_14 AC 80 ms
75,904 KB
testcase_15 AC 67 ms
75,776 KB
testcase_16 AC 66 ms
75,776 KB
testcase_17 AC 63 ms
73,600 KB
testcase_18 AC 75 ms
75,776 KB
testcase_19 AC 60 ms
71,936 KB
testcase_20 AC 61 ms
72,320 KB
testcase_21 AC 72 ms
76,108 KB
testcase_22 AC 70 ms
75,976 KB
testcase_23 AC 74 ms
75,848 KB
testcase_24 AC 58 ms
70,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
aa = list(map(int,input().split()))

n+=100
aa+=[0]*100

aasum = sum(aa)

result = aasum
for l in range(n-1):
    for r in range(l,n):
        if (r-l)%2: continue
        bb = [0]*n
        for x in range(l,r+1):
            bb[x] = min(x-l,r-x)+1
        if sum(bb) > aasum: continue
        s = 0
        for x in range(n):
            s+= max(0,aa[x]-bb[x]) # 減らす方のみカウント
        result = min(result,s)

print(result)
0