結果

問題 No.77 レンガのピラミッド
ユーザー kou6839kou6839
提出日時 2014-11-26 14:05:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 121 ms / 5,000 ms
コード長 966 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 77,848 KB
実行使用メモリ 42,104 KB
最終ジャッジ日時 2024-06-11 04:00:14
合計ジャッジ時間 5,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
40,276 KB
testcase_01 AC 98 ms
40,264 KB
testcase_02 AC 109 ms
41,316 KB
testcase_03 AC 113 ms
41,508 KB
testcase_04 AC 108 ms
41,368 KB
testcase_05 AC 105 ms
41,132 KB
testcase_06 AC 116 ms
41,792 KB
testcase_07 AC 114 ms
41,360 KB
testcase_08 AC 115 ms
41,924 KB
testcase_09 AC 111 ms
41,200 KB
testcase_10 AC 99 ms
40,312 KB
testcase_11 AC 99 ms
40,176 KB
testcase_12 AC 117 ms
41,968 KB
testcase_13 AC 117 ms
41,500 KB
testcase_14 AC 121 ms
42,104 KB
testcase_15 AC 101 ms
40,356 KB
testcase_16 AC 100 ms
40,448 KB
testcase_17 AC 107 ms
41,536 KB
testcase_18 AC 111 ms
41,488 KB
testcase_19 AC 110 ms
41,020 KB
testcase_20 AC 106 ms
41,096 KB
testcase_21 AC 105 ms
40,692 KB
testcase_22 AC 110 ms
41,436 KB
testcase_23 AC 98 ms
40,360 KB
testcase_24 AC 110 ms
41,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[1000];
			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