結果

問題 No.77 レンガのピラミッド
ユーザー YamaKasaYamaKasa
提出日時 2018-07-03 19:18:16
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 993 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,424 KB
実行使用メモリ 48,260 KB
最終ジャッジ日時 2024-07-01 02:00:11
合計ジャッジ時間 6,478 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
46,508 KB
testcase_01 AC 132 ms
47,876 KB
testcase_02 AC 129 ms
47,816 KB
testcase_03 AC 132 ms
47,916 KB
testcase_04 AC 116 ms
46,568 KB
testcase_05 AC 131 ms
47,624 KB
testcase_06 AC 140 ms
47,876 KB
testcase_07 AC 134 ms
47,772 KB
testcase_08 AC 142 ms
47,968 KB
testcase_09 AC 119 ms
46,764 KB
testcase_10 AC 134 ms
48,084 KB
testcase_11 AC 133 ms
48,048 KB
testcase_12 AC 140 ms
48,168 KB
testcase_13 AC 139 ms
47,924 KB
testcase_14 AC 138 ms
48,180 KB
testcase_15 AC 137 ms
48,048 KB
testcase_16 AC 133 ms
48,036 KB
testcase_17 AC 132 ms
48,048 KB
testcase_18 AC 140 ms
48,260 KB
testcase_19 AC 129 ms
47,736 KB
testcase_20 AC 119 ms
46,484 KB
testcase_21 AC 137 ms
47,628 KB
testcase_22 AC 134 ms
47,764 KB
testcase_23 AC 124 ms
46,764 KB
testcase_24 AC 131 ms
47,628 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int A[] = new int[101];
		Arrays.fill(A, 0);
		// 1オリジン
		for(int i = 1; i <= N; i++) {
			A[i] = scan.nextInt();
		}

		scan.close();

		int sum = 0;
		for(int i = 1; i <= N; i++) {
			sum += A[i];
		}
		int n = 1;
		int cost = 0;
		for(int i = 1; i < 1000; i++) {
			if(sum == i * i) {
				n = i;
				break;
			}else if(sum < i * i) {
				n = i - 1;
				break;
			}
		}
		//cost = sum - n * n;
		cost = 0;
		// System.out.println(n);
		int l;
		if(2 * n - 1>= N) {
			l = N;
		}else {
			l = 2 * n - 1;
		}
		for(int i = 1; i <= l; i++) {
			if(i <= n) {
				if(A[i] >= i) {
					cost += i;
				}else {
					cost += A[i];
				}
			}else {
				int t = 2 * n - i;
				if(A[i] >= t) {
					cost += t;
				}else {
					cost += A[i];
				}
			}
		}

		int ans = sum - cost;
		System.out.println(ans);
	}
}
0