結果

問題 No.77 レンガのピラミッド
ユーザー htensaihtensai
提出日時 2020-02-05 14:59:49
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 921 bytes
コンパイル時間 2,127 ms
コンパイル使用メモリ 74,968 KB
実行使用メモリ 54,308 KB
最終ジャッジ日時 2024-09-22 13:37:01
合計ジャッジ時間 6,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,148 KB
testcase_01 AC 130 ms
54,308 KB
testcase_02 AC 116 ms
53,120 KB
testcase_03 AC 131 ms
54,264 KB
testcase_04 AC 129 ms
54,064 KB
testcase_05 AC 129 ms
54,024 KB
testcase_06 AC 139 ms
54,104 KB
testcase_07 AC 129 ms
54,000 KB
testcase_08 AC 138 ms
54,180 KB
testcase_09 AC 129 ms
53,912 KB
testcase_10 AC 129 ms
54,012 KB
testcase_11 AC 133 ms
53,992 KB
testcase_12 AC 138 ms
54,004 KB
testcase_13 AC 139 ms
53,968 KB
testcase_14 AC 141 ms
54,248 KB
testcase_15 AC 135 ms
54,016 KB
testcase_16 AC 132 ms
54,088 KB
testcase_17 AC 132 ms
54,104 KB
testcase_18 AC 139 ms
54,144 KB
testcase_19 AC 130 ms
54,160 KB
testcase_20 AC 135 ms
54,024 KB
testcase_21 AC 139 ms
53,924 KB
testcase_22 AC 135 ms
54,260 KB
testcase_23 AC 137 ms
54,248 KB
testcase_24 AC 132 ms
53,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        int total = 0;
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
            total += arr[i];
        }
        int max = (int)(Math.sqrt(total));
        int min = Integer.MAX_VALUE;
        for (int i = 1; i <= max; i++) {
            int count = 0;
            int sum = 0;
            for (int j = 0; j < n; j++) {
                if (j < i) {
                    count++;
                } else {
                    count--;
                    if (count < 0) {
                        count = 0;
                    }
                }
                sum += Math.max(0, arr[j] - count);
            }
            min = Math.min(sum, min);
        }
        System.out.println(min);
    }
}
0