結果

問題 No.77 レンガのピラミッド
ユーザー ぴろずぴろず
提出日時 2014-12-11 11:49:36
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 77,336 KB
実行使用メモリ 42,032 KB
最終ジャッジ日時 2024-06-11 20:34:16
合計ジャッジ時間 5,513 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
41,692 KB
testcase_01 AC 113 ms
41,400 KB
testcase_02 AC 110 ms
41,324 KB
testcase_03 AC 113 ms
41,580 KB
testcase_04 AC 118 ms
41,696 KB
testcase_05 AC 119 ms
41,632 KB
testcase_06 AC 121 ms
41,780 KB
testcase_07 AC 116 ms
41,544 KB
testcase_08 AC 123 ms
41,904 KB
testcase_09 AC 113 ms
41,632 KB
testcase_10 AC 117 ms
41,636 KB
testcase_11 AC 115 ms
41,640 KB
testcase_12 AC 124 ms
41,496 KB
testcase_13 AC 116 ms
42,032 KB
testcase_14 AC 122 ms
41,768 KB
testcase_15 AC 117 ms
41,940 KB
testcase_16 AC 107 ms
41,548 KB
testcase_17 AC 117 ms
41,496 KB
testcase_18 AC 126 ms
41,620 KB
testcase_19 AC 115 ms
41,684 KB
testcase_20 AC 110 ms
41,644 KB
testcase_21 AC 129 ms
40,340 KB
testcase_22 AC 119 ms
41,556 KB
testcase_23 AC 121 ms
41,624 KB
testcase_24 AC 116 ms
41,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no077;

import java.util.Scanner;

public class Main {
	public static final int MAX = 300;
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[MAX];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		int ans = 10000000;
		for(int i=1;i<=201;i+=2) {
			int[] b = new int[MAX];
			for(int k=0;k<i;k++) {
				b[k] = (i+1)/2 - Math.abs(i/2-k);
			}
			int x = 0;
			int y = 0;
			for(int k=0;k<MAX;k++) {
				if (a[k] >= b[k]) {
					x += a[k] - b[k];
				}else{
					y += b[k] - a[k];
				}
			}
			if (x < y) {
				continue;
			}
			ans = Math.min(ans, x);
		}
		System.out.println(ans);
	}

}
0