結果

問題 No.77 レンガのピラミッド
ユーザー jp_stejp_ste
提出日時 2016-02-29 02:05:50
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 1,154 bytes
コンパイル時間 3,368 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 54,616 KB
最終ジャッジ日時 2024-09-24 12:33:34
合計ジャッジ時間 7,390 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
53,928 KB
testcase_01 AC 136 ms
53,892 KB
testcase_02 AC 136 ms
53,872 KB
testcase_03 AC 133 ms
53,964 KB
testcase_04 AC 132 ms
54,088 KB
testcase_05 AC 136 ms
54,260 KB
testcase_06 RE -
testcase_07 AC 147 ms
53,960 KB
testcase_08 RE -
testcase_09 AC 151 ms
54,116 KB
testcase_10 AC 149 ms
54,360 KB
testcase_11 AC 152 ms
54,016 KB
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 155 ms
54,076 KB
testcase_16 AC 148 ms
53,872 KB
testcase_17 AC 147 ms
54,280 KB
testcase_18 RE -
testcase_19 AC 138 ms
54,132 KB
testcase_20 AC 142 ms
53,828 KB
testcase_21 AC 129 ms
53,072 KB
testcase_22 AC 139 ms
54,152 KB
testcase_23 AC 142 ms
54,088 KB
testcase_24 AC 149 ms
53,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

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