結果

問題 No.77 レンガのピラミッド
ユーザー kou6839kou6839
提出日時 2014-11-26 14:02:55
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 961 bytes
コンパイル時間 2,121 ms
コンパイル使用メモリ 77,112 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-06-11 04:00:02
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
54,156 KB
testcase_01 AC 131 ms
54,092 KB
testcase_02 AC 130 ms
53,852 KB
testcase_03 AC 108 ms
52,796 KB
testcase_04 AC 106 ms
53,012 KB
testcase_05 AC 116 ms
53,776 KB
testcase_06 RE -
testcase_07 AC 120 ms
53,736 KB
testcase_08 RE -
testcase_09 AC 126 ms
54,136 KB
testcase_10 AC 121 ms
53,916 KB
testcase_11 AC 124 ms
53,980 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 121 ms
54,076 KB
testcase_16 AC 99 ms
52,316 KB
testcase_17 AC 112 ms
53,816 KB
testcase_18 RE -
testcase_19 AC 104 ms
52,800 KB
testcase_20 AC 120 ms
54,012 KB
testcase_21 AC 123 ms
54,252 KB
testcase_22 AC 105 ms
52,836 KB
testcase_23 AC 112 ms
53,112 KB
testcase_24 AC 106 ms
53,208 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 ans=Integer.MAX_VALUE;
		int[] block = new int[101];
		int motokazu=0;
		for(int i=0;i<n;i++){
			int temp=sc.nextInt();
			motokazu+=temp;
			block[i]=temp;
		}
		for(int i=1;;i++){
			int[] pira = new int[101];
			int kazu=0;
			for(int j=0;;){
				for(int k=1;k<=i;k++){
					kazu+=k;
					pira[j]=k;
					j++;
				}
				for(int l=i-1;l>0;l--){
					kazu+=l;
					pira[j]=l;
					j++;
				}
				break;
			}
			if(motokazu<kazu) break;;
			int dai=0;
			int syou=0;
			for(int j=0;j<101;j++){
				if(block[j]>pira[j]){
					dai+=block[j]-pira[j];
				}else if(block[j]<pira[j]){
					syou+=pira[j]-block[j];
				}
			}
			if(dai==syou){
				ans=Math.min(ans, dai);
			}
			if(dai>syou){
				ans=Math.min(ans, dai);
			}
		}
		System.out.println(ans);
	}
}		
0