結果

問題 No.77 レンガのピラミッド
ユーザー TomoyarnTomoyarn
提出日時 2023-01-14 16:18:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 145 ms / 5,000 ms
コード長 1,356 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 77,056 KB
最終ジャッジ日時 2024-12-26 01:18:55
合計ジャッジ時間 3,775 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 35 ms
52,216 KB
testcase_02 AC 35 ms
51,968 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 127 ms
76,160 KB
testcase_07 AC 36 ms
51,968 KB
testcase_08 AC 134 ms
76,544 KB
testcase_09 AC 120 ms
76,800 KB
testcase_10 AC 126 ms
76,672 KB
testcase_11 AC 122 ms
76,492 KB
testcase_12 AC 142 ms
76,904 KB
testcase_13 AC 137 ms
76,980 KB
testcase_14 AC 135 ms
76,836 KB
testcase_15 AC 118 ms
77,056 KB
testcase_16 AC 125 ms
76,760 KB
testcase_17 AC 114 ms
76,544 KB
testcase_18 AC 145 ms
76,808 KB
testcase_19 AC 89 ms
76,032 KB
testcase_20 AC 101 ms
76,044 KB
testcase_21 AC 137 ms
76,800 KB
testcase_22 AC 131 ms
76,672 KB
testcase_23 AC 144 ms
76,888 KB
testcase_24 AC 40 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
sumA = sum(A)
SW = N
SH = max(A)

rowcnt = 1
cum = 1
row = 0
while cum <= sumA:
    row += 1
    rowcnt += 2
    cum += rowcnt

H = max(max(A), row)
W = max(N, H * 2 - 1)
#print(row,H, W)
S = []

for i in range(H):
    row = []
    for j in range(W):
        if j < N:
            if A[j] > i:
                row.append("#")
            else:
                row.append(".")
        else:
            row.append(".")
    S.append(row)


#print(*S, sep = "\n")
#print("====")

lines = H
ans = 99999
while lines > 0:
    T = []
    blocks = lines * 2 - 1
    right = W - blocks
    left = 0
    for i in range(H):
        if blocks > 0:
            row = ["."] * left + ["#"] * blocks + ["."] * right
        else:
            row = ["."] * W
        T.append(row)
        right += 1
        left += 1
        if blocks > 1:
            blocks -= 2
        else:
            blocks = 0
    

    moveout = 0
    movein = 0
    for i in range(H):
        for j in range(W):
            if S[i][j] == "#" and T[i][j] == ".":
                moveout += 1
            if T[i][j] == "#" and S[i][j] == ".":
                movein += 1

    #print(*T, sep = "\n")
    #print(movein, moveout)
    
    if movein <= moveout:
        ans = min(moveout, ans)
    
    #print("---")
    

    lines -= 1

print(ans)
0