結果

問題 No.77 レンガのピラミッド
ユーザー jp_stejp_ste
提出日時 2016-02-29 02:13:47
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,181 bytes
コンパイル時間 2,269 ms
コンパイル使用メモリ 76,628 KB
実行使用メモリ 58,308 KB
最終ジャッジ日時 2024-09-24 12:35:06
合計ジャッジ時間 6,447 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
53,968 KB
testcase_01 AC 123 ms
53,948 KB
testcase_02 RE -
testcase_03 AC 134 ms
54,176 KB
testcase_04 AC 113 ms
53,060 KB
testcase_05 AC 115 ms
52,944 KB
testcase_06 AC 141 ms
54,204 KB
testcase_07 RE -
testcase_08 AC 138 ms
54,240 KB
testcase_09 AC 128 ms
54,192 KB
testcase_10 AC 130 ms
54,344 KB
testcase_11 AC 130 ms
54,112 KB
testcase_12 AC 135 ms
54,372 KB
testcase_13 AC 143 ms
53,936 KB
testcase_14 AC 136 ms
54,092 KB
testcase_15 AC 110 ms
52,928 KB
testcase_16 AC 127 ms
54,084 KB
testcase_17 AC 152 ms
54,292 KB
testcase_18 AC 135 ms
54,060 KB
testcase_19 AC 131 ms
54,088 KB
testcase_20 AC 132 ms
54,192 KB
testcase_21 AC 129 ms
54,340 KB
testcase_22 AC 131 ms
54,152 KB
testcase_23 AC 132 ms
54,216 KB
testcase_24 AC 127 ms
53,964 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++;
                }
            }
            
            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