結果

問題 No.77 レンガのピラミッド
ユーザー titiatitia
提出日時 2022-01-04 03:59:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 308 ms / 5,000 ms
コード長 609 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 75,816 KB
最終ジャッジ日時 2024-10-13 17:35:23
合計ジャッジ時間 2,608 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,452 KB
testcase_01 AC 38 ms
52,124 KB
testcase_02 AC 37 ms
52,340 KB
testcase_03 AC 37 ms
52,068 KB
testcase_04 AC 36 ms
53,028 KB
testcase_05 AC 35 ms
53,496 KB
testcase_06 AC 308 ms
75,304 KB
testcase_07 AC 35 ms
53,104 KB
testcase_08 AC 145 ms
75,816 KB
testcase_09 AC 49 ms
64,644 KB
testcase_10 AC 48 ms
64,108 KB
testcase_11 AC 52 ms
66,784 KB
testcase_12 AC 92 ms
75,412 KB
testcase_13 AC 99 ms
75,580 KB
testcase_14 AC 118 ms
75,056 KB
testcase_15 AC 48 ms
63,828 KB
testcase_16 AC 51 ms
63,120 KB
testcase_17 AC 43 ms
60,644 KB
testcase_18 AC 89 ms
75,452 KB
testcase_19 AC 39 ms
58,604 KB
testcase_20 AC 41 ms
60,624 KB
testcase_21 AC 64 ms
71,168 KB
testcase_22 AC 49 ms
64,340 KB
testcase_23 AC 63 ms
70,780 KB
testcase_24 AC 35 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))

LANS=1<<60

def calc(A,k):
    
    ANS=0
    X=[min(i+1,k-i) for i in range(k)]
    #print(X)

    while len(X)<N:
        X.append(0)

    while len(A)<len(X):
        A.append(0)

    for i in range(len(A)):
        while A[i]>X[i]:
            ANS+=1
            A[i]-=1
            for j in range(len(A)):
                if A[j]<X[j]:
                    A[j]+=1
                    break
    #print(ANS)
    if X==A:
        return ANS
    else:
        return 1<<60

for i in range(1,2*N+1,2):
    LANS=min(LANS,calc(A[:],i))

print(LANS)
            
0