結果

問題 No.77 レンガのピラミッド
ユーザー YamaKasaYamaKasa
提出日時 2018-07-03 19:14:00
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 920 bytes
コンパイル時間 2,251 ms
コンパイル使用メモリ 77,096 KB
実行使用メモリ 54,192 KB
最終ジャッジ日時 2024-07-01 02:00:04
合計ジャッジ時間 6,519 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
41,240 KB
testcase_01 AC 119 ms
39,848 KB
testcase_02 WA -
testcase_03 AC 130 ms
41,316 KB
testcase_04 AC 130 ms
41,356 KB
testcase_05 AC 129 ms
40,944 KB
testcase_06 AC 144 ms
41,232 KB
testcase_07 AC 131 ms
41,516 KB
testcase_08 AC 139 ms
41,084 KB
testcase_09 AC 136 ms
41,488 KB
testcase_10 AC 135 ms
41,120 KB
testcase_11 AC 136 ms
41,280 KB
testcase_12 AC 140 ms
41,352 KB
testcase_13 AC 139 ms
41,364 KB
testcase_14 AC 139 ms
41,560 KB
testcase_15 AC 136 ms
41,188 KB
testcase_16 AC 133 ms
40,988 KB
testcase_17 AC 131 ms
41,272 KB
testcase_18 AC 138 ms
41,556 KB
testcase_19 AC 134 ms
41,548 KB
testcase_20 AC 134 ms
41,368 KB
testcase_21 AC 137 ms
41,204 KB
testcase_22 AC 132 ms
41,004 KB
testcase_23 AC 140 ms
41,412 KB
testcase_24 AC 131 ms
41,404 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);
		for(int i = 1; i <= N; 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