結果

問題 No.77 レンガのピラミッド
ユーザー GrenacheGrenache
提出日時 2015-11-06 18:33:12
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 801 bytes
コンパイル時間 3,328 ms
コンパイル使用メモリ 78,796 KB
実行使用メモリ 41,712 KB
最終ジャッジ日時 2024-09-13 13:05:21
合計ジャッジ時間 7,611 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
40,180 KB
testcase_01 AC 130 ms
41,344 KB
testcase_02 AC 129 ms
41,240 KB
testcase_03 AC 130 ms
41,412 KB
testcase_04 AC 133 ms
41,560 KB
testcase_05 AC 132 ms
41,036 KB
testcase_06 AC 137 ms
41,552 KB
testcase_07 AC 127 ms
41,388 KB
testcase_08 AC 141 ms
41,712 KB
testcase_09 AC 133 ms
41,600 KB
testcase_10 AC 134 ms
41,324 KB
testcase_11 AC 136 ms
41,532 KB
testcase_12 AC 138 ms
41,676 KB
testcase_13 AC 137 ms
41,424 KB
testcase_14 AC 142 ms
41,128 KB
testcase_15 AC 134 ms
41,276 KB
testcase_16 AC 133 ms
41,544 KB
testcase_17 AC 133 ms
41,176 KB
testcase_18 AC 138 ms
41,568 KB
testcase_19 AC 130 ms
41,204 KB
testcase_20 AC 131 ms
41,396 KB
testcase_21 AC 141 ms
41,460 KB
testcase_22 AC 121 ms
40,364 KB
testcase_23 AC 135 ms
41,272 KB
testcase_24 AC 133 ms
41,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder77 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        int n = sc.nextInt();
        int[] a = new int[n];
        int sum = 0;
        for (int i = 0; i < n; i++) {
        	a[i] = sc.nextInt();
        	sum += a[i];
        }

        int nn = (int)Math.sqrt(sum);
        int p = 0;
        int m = 0;
        for (int i = 0; i < n; i++) {
        	int tmp;
        	if (i < nn) {
        		tmp = i + 1;
        	} else {
        		tmp = Math.max(0, nn - (i - nn + 1));
        	}
        	
        	if (a[i] > tmp) {
        		p += a[i] - tmp;
        	} else {
        		m += tmp - a[i];
        	}
        }

        System.out.println(m + Math.max(0, p - m));

        sc.close();
    }
}
0