結果

問題 No.77 レンガのピラミッド
ユーザー scachescache
提出日時 2014-11-26 14:26:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,072 bytes
コンパイル時間 3,168 ms
コンパイル使用メモリ 77,628 KB
実行使用メモリ 54,232 KB
最終ジャッジ日時 2024-06-11 04:01:05
合計ジャッジ時間 6,983 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
54,120 KB
testcase_01 AC 99 ms
53,120 KB
testcase_02 AC 104 ms
52,832 KB
testcase_03 AC 119 ms
53,900 KB
testcase_04 AC 119 ms
53,892 KB
testcase_05 AC 119 ms
53,884 KB
testcase_06 AC 124 ms
53,956 KB
testcase_07 AC 116 ms
54,024 KB
testcase_08 AC 122 ms
53,916 KB
testcase_09 AC 134 ms
53,752 KB
testcase_10 AC 123 ms
53,972 KB
testcase_11 AC 104 ms
52,596 KB
testcase_12 AC 123 ms
54,044 KB
testcase_13 AC 127 ms
53,868 KB
testcase_14 AC 129 ms
54,128 KB
testcase_15 AC 119 ms
53,996 KB
testcase_16 AC 121 ms
54,044 KB
testcase_17 AC 121 ms
53,952 KB
testcase_18 AC 126 ms
54,232 KB
testcase_19 AC 99 ms
52,744 KB
testcase_20 AC 117 ms
54,168 KB
testcase_21 AC 113 ms
52,692 KB
testcase_22 AC 121 ms
54,232 KB
testcase_23 AC 119 ms
54,148 KB
testcase_24 AC 114 ms
53,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


import java.util.Scanner;

public class Main77 {
	public static void main(String[] args) {
		Main77 p = new Main77();
	}

	public Main77() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[201];
		for(int i=0;i<n;i++)
			a[i] = sc.nextInt();
		solve(n, a);
	}

	public void solve(int n, int[] a) {
		int res = Integer.MAX_VALUE;
		int[] sum = new int[a.length];
		sum[0] = a[0];
		for(int i=sum.length-2;i>=0;i--)
			sum[i] += sum[i+1] + a[i];
		
		
		for(int i=0;i<a.length/2;i++){
			int cur = -1;
			int e = 0;
			int f = 0;
			for(int j=0;j<i+1;j++){
				if(a[j] - (j+1) > 0)
					e+=a[j] - (j+1);
				else
					f-=(a[j] - (j+1));
			}
				
			for(int j=i+1;j<i*2+1;j++){
				if(a[j] - (i*2+1-j) > 0)
					e+=a[j] - (i*2+1-j);
				else
					f-=(a[j] - (i*2+1-j));
			}

			if(e>=f)
				cur = e + sum[i*2+1];
			else if(f>=e && f-e <= sum[i*2])
				cur = e + sum[i*2+1];
			
			
			if(cur>=0){
				res = Math.min(res, cur);
			}
		}
		
		System.out.println(res);
		
	}

}
0