結果

問題 No.77 レンガのピラミッド
ユーザー Tsuneo YoshiokaTsuneo Yoshioka
提出日時 2014-11-26 00:41:59
言語 Ruby
(3.3.0)
結果
AC  
実行時間 83 ms / 5,000 ms
コード長 853 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-11 03:54:38
合計ジャッジ時間 2,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,416 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 AC 75 ms
12,416 KB
testcase_04 AC 74 ms
12,288 KB
testcase_05 AC 73 ms
12,160 KB
testcase_06 AC 74 ms
12,416 KB
testcase_07 AC 75 ms
12,288 KB
testcase_08 AC 83 ms
12,160 KB
testcase_09 AC 79 ms
12,160 KB
testcase_10 AC 73 ms
12,416 KB
testcase_11 AC 74 ms
12,160 KB
testcase_12 AC 76 ms
12,288 KB
testcase_13 AC 76 ms
12,160 KB
testcase_14 AC 75 ms
12,160 KB
testcase_15 AC 75 ms
12,160 KB
testcase_16 AC 73 ms
12,288 KB
testcase_17 AC 74 ms
12,160 KB
testcase_18 AC 73 ms
12,160 KB
testcase_19 AC 73 ms
12,160 KB
testcase_20 AC 78 ms
12,288 KB
testcase_21 AC 74 ms
12,288 KB
testcase_22 AC 76 ms
12,160 KB
testcase_23 AC 73 ms
12,160 KB
testcase_24 AC 73 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# Here your code !
# 1 + 3 + 5 + ... = N * (1 + (2N-1))/2 = N * N

N = gets.to_i
A = gets.split.map(&:to_i)
sum = A.inject(&:+)
level = Math.sqrt(sum).floor
#level = [level,(N+1)/2].min
mintotal = 1000000
#puts "sum=#{sum}, level=#{level}"
# (0+(level-1)...N-(level-1)).each{|i|
(level-1..level-1).each{|i|
    total = 0
    #puts "i=#{i}"
    # (-(level-1)..(level-1)).each{|j|
    (0...N).each{|j|
        h = 0
        if j>=0 && j< N then
            h = A[j]
        end
        base = 0 
        if level >= (i-j).abs
             base = level - (i-j).abs 
        end
        if h > base then
            diff = (h - base).abs
            total += diff
        end
        #puts "i=#{i}, j=#{j}, h=#{h}, base=#{base}, diff=#{diff}, total=#{total}"
    }
    mintotal = [mintotal, total].min
}
puts mintotal



0