結果

問題 No.77 レンガのピラミッド
ユーザー tsunabittsunabit
提出日時 2020-01-08 14:47:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 134 ms / 5,000 ms
コード長 1,039 bytes
コンパイル時間 3,348 ms
コンパイル使用メモリ 77,872 KB
実行使用メモリ 41,704 KB
最終ジャッジ日時 2024-11-23 02:42:16
合計ジャッジ時間 7,422 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,132 KB
testcase_01 AC 128 ms
41,340 KB
testcase_02 AC 124 ms
41,052 KB
testcase_03 AC 129 ms
41,160 KB
testcase_04 AC 123 ms
41,188 KB
testcase_05 AC 126 ms
41,076 KB
testcase_06 AC 134 ms
41,688 KB
testcase_07 AC 127 ms
41,040 KB
testcase_08 AC 133 ms
41,704 KB
testcase_09 AC 127 ms
41,600 KB
testcase_10 AC 129 ms
41,128 KB
testcase_11 AC 120 ms
40,384 KB
testcase_12 AC 133 ms
41,040 KB
testcase_13 AC 133 ms
41,500 KB
testcase_14 AC 124 ms
41,472 KB
testcase_15 AC 124 ms
41,468 KB
testcase_16 AC 125 ms
41,316 KB
testcase_17 AC 125 ms
41,076 KB
testcase_18 AC 130 ms
41,664 KB
testcase_19 AC 108 ms
40,032 KB
testcase_20 AC 122 ms
41,360 KB
testcase_21 AC 127 ms
41,148 KB
testcase_22 AC 121 ms
40,996 KB
testcase_23 AC 116 ms
40,384 KB
testcase_24 AC 118 ms
41,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No77 {
//	private static Set<String> set = new HashSet<String>();
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[200];
		Arrays.fill(a, 0);
		int total_ini = 0;
		for(int i = 0; i < n; i++) {
			a[i] = sc.nextInt();
			total_ini += a[i];
		}
		// ピラミッドの石の数から列数判定
		int c = (int)Math.sqrt(total_ini) * 2 - 1;
		// 配列にピラミッド生成
		int[] p = new int[200];
		Arrays.fill(p, 0);
		int ato = 0;
		for(int i = 0; i < c; i++) {
			if(i >= c/2+1) p[i] = p[i-1] - 1;
			else p[i] = i + 1;
			ato += p[i];
		}
		// 移動個数判定
		int ido = 0;
		// 移動した石をカウント
		for(int i = 0; i < p.length; i++) {
			if(a[i] == 0 && p[i] == 0) break;
			if(a[i] < p[i]) ido += p[i] - a[i];
		}
		// 捨てた石をカウント(初期値とピラミッドの石の差分をカウント)
		ido += total_ini - ato;	
		System.out.println(ido);
	}
}
0