結果

問題 No.77 レンガのピラミッド
ユーザー GoryudyumaGoryudyuma
提出日時 2017-03-20 21:03:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 1,519 bytes
コンパイル時間 2,110 ms
コンパイル使用メモリ 78,608 KB
実行使用メモリ 55,872 KB
最終ジャッジ日時 2024-07-05 04:32:39
合計ジャッジ時間 6,453 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
53,984 KB
testcase_01 AC 127 ms
53,584 KB
testcase_02 AC 125 ms
54,044 KB
testcase_03 AC 123 ms
54,036 KB
testcase_04 AC 124 ms
53,960 KB
testcase_05 AC 128 ms
54,072 KB
testcase_06 AC 142 ms
53,956 KB
testcase_07 AC 117 ms
52,808 KB
testcase_08 AC 140 ms
54,032 KB
testcase_09 AC 132 ms
54,084 KB
testcase_10 AC 135 ms
54,368 KB
testcase_11 AC 128 ms
53,892 KB
testcase_12 AC 134 ms
54,112 KB
testcase_13 AC 136 ms
54,084 KB
testcase_14 AC 139 ms
53,896 KB
testcase_15 AC 131 ms
54,076 KB
testcase_16 AC 130 ms
55,872 KB
testcase_17 AC 126 ms
53,924 KB
testcase_18 AC 135 ms
54,052 KB
testcase_19 AC 132 ms
54,040 KB
testcase_20 AC 128 ms
54,040 KB
testcase_21 AC 133 ms
53,844 KB
testcase_22 AC 128 ms
54,100 KB
testcase_23 AC 133 ms
54,080 KB
testcase_24 AC 128 ms
53,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main {
        public static void main(String args[]) {
                try (Scanner sc = new Scanner(System.in)) {
                        int N = sc.nextInt();
                        int[] A = new int[N];
                        int sum = 0;
                        for (int i = 0; i < N; i++) {
                                A[i] = sc.nextInt();
                                sum += A[i];
                        }
                        int ans = 1 << 29;
                        for (int i = 1; i * i <= sum; i++) {
                                int count = 0;
                                int stock = 0;
                                for (int j = 0; j < N; j++) {
                                        int x;
                                        if (j >= i) {
                                                x = i * 2 - j - 1;
                                        } else {
                                                x = j + 1;
                                        }
                                        if (x <= 0) {
                                                x = 0;
                                        }
                                        count += Math.abs(A[j] - x);
                                        stock += A[j] - x;
                                }
                                ans = Math.min((count + stock) / 2, ans);
                        }
                        System.out.println(ans);
                }
        }
}
0