結果

問題 No.77 レンガのピラミッド
ユーザー jp_stejp_ste
提出日時 2016-02-29 02:19:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 1,625 bytes
コンパイル時間 2,843 ms
コンパイル使用メモリ 79,040 KB
実行使用メモリ 54,392 KB
最終ジャッジ日時 2024-09-24 12:35:18
合計ジャッジ時間 7,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,180 KB
testcase_01 AC 133 ms
54,064 KB
testcase_02 AC 133 ms
54,164 KB
testcase_03 AC 134 ms
54,164 KB
testcase_04 AC 133 ms
53,984 KB
testcase_05 AC 134 ms
54,372 KB
testcase_06 AC 144 ms
54,104 KB
testcase_07 AC 132 ms
54,128 KB
testcase_08 AC 141 ms
54,364 KB
testcase_09 AC 135 ms
54,392 KB
testcase_10 AC 135 ms
53,980 KB
testcase_11 AC 137 ms
53,988 KB
testcase_12 AC 143 ms
54,212 KB
testcase_13 AC 143 ms
54,116 KB
testcase_14 AC 146 ms
53,980 KB
testcase_15 AC 136 ms
54,380 KB
testcase_16 AC 136 ms
54,188 KB
testcase_17 AC 135 ms
54,360 KB
testcase_18 AC 145 ms
54,084 KB
testcase_19 AC 133 ms
54,332 KB
testcase_20 AC 133 ms
54,392 KB
testcase_21 AC 139 ms
54,240 KB
testcase_22 AC 136 ms
54,236 KB
testcase_23 AC 137 ms
53,996 KB
testcase_24 AC 133 ms
54,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Scanner;

public class Main {
    public static void main(String[] args) {
        try (Scanner scan = new Scanner(System.in)) {
            int N = scan.nextInt();
            ArrayList<Integer> list = new ArrayList<>();
            ArrayList<Integer> ansList = new ArrayList<>();
            int sum = 0;
            for(int i=0; i<N; i++) {
                list.add(scan.nextInt());
                sum += list.get(i);
            }
            
            int sqrtSum = (int)Math.sqrt(sum);
            sum = sqrtSum * sqrtSum;
            
            int mid = sum/2;
            int value = 1;
            while(sum > 0) {
                ansList.add(value);
                sum -= value;
                if(sum < mid) {
                    value--;
                } else {
                    value++;
                }
            }
            
            if(list.size() > ansList.size()) {
                int num = list.size() - ansList.size();
                for(int i=0; i<num; i++) {
                    ansList.add(0);
                }
            
            } else if(list.size() < ansList.size()) {
                int num = ansList.size() - list.size();
                for(int i=0; i<num; i++) {
                    list.add(0);
                }
            }
            
            int ans = 0;
            for(int i=0; i<list.size(); i++) {
                int diff = list.get(i) - ansList.get(i);
                if(diff > 0) {
                    ans += diff;
                }
            }
            System.out.println(ans);
        }
    }
}
0