結果

問題 No.77 レンガのピラミッド
ユーザー tnodinotnodino
提出日時 2022-03-08 18:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 51 ms / 5,000 ms
コード長 580 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 63,280 KB
最終ジャッジ日時 2024-07-23 18:13:13
合計ジャッジ時間 2,654 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
60,364 KB
testcase_01 AC 45 ms
60,696 KB
testcase_02 AC 44 ms
60,968 KB
testcase_03 AC 43 ms
60,484 KB
testcase_04 AC 44 ms
60,112 KB
testcase_05 AC 43 ms
61,720 KB
testcase_06 AC 51 ms
62,644 KB
testcase_07 AC 45 ms
60,148 KB
testcase_08 AC 49 ms
62,168 KB
testcase_09 AC 48 ms
63,280 KB
testcase_10 AC 47 ms
62,280 KB
testcase_11 AC 48 ms
62,584 KB
testcase_12 AC 48 ms
62,588 KB
testcase_13 AC 49 ms
62,096 KB
testcase_14 AC 49 ms
62,404 KB
testcase_15 AC 49 ms
62,936 KB
testcase_16 AC 49 ms
62,132 KB
testcase_17 AC 45 ms
61,128 KB
testcase_18 AC 47 ms
61,656 KB
testcase_19 AC 45 ms
60,372 KB
testcase_20 AC 46 ms
60,776 KB
testcase_21 AC 47 ms
62,108 KB
testcase_22 AC 48 ms
61,748 KB
testcase_23 AC 49 ms
62,348 KB
testcase_24 AC 44 ms
60,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 1<<32
M = 200
N = int(input())
A = list(map(int,input().split()))
ans = INF
for Len in range(1,M,2):
    P = [0] * M
    cnt = 1
    Mid = Len // 2
    for i in range(Len):
        P[i] = cnt
        if i < Mid:
            cnt += 1
        else:
            cnt -= 1
    Q = [0] * M
    for i in range(N):
        Q[i] = A[i]
    ret = 0
    cnt = 0
    for i in range(M):
        if P[i] < Q[i]:
            ret += Q[i] - P[i]
            cnt += Q[i] - P[i]
        else:
            cnt -= P[i] - Q[i]
    if cnt < 0:
        ret += INF
    ans = min(ans, ret)
print(ans)
0