結果

問題 No.77 レンガのピラミッド
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-18 01:57:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 803 bytes
コンパイル時間 2,370 ms
コンパイル使用メモリ 74,852 KB
実行使用メモリ 41,876 KB
最終ジャッジ日時 2024-11-26 03:30:21
合計ジャッジ時間 6,798 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,276 KB
testcase_01 AC 104 ms
41,700 KB
testcase_02 AC 106 ms
41,140 KB
testcase_03 AC 119 ms
41,564 KB
testcase_04 AC 114 ms
41,316 KB
testcase_05 AC 119 ms
41,296 KB
testcase_06 AC 122 ms
41,552 KB
testcase_07 AC 120 ms
41,712 KB
testcase_08 AC 128 ms
41,552 KB
testcase_09 AC 110 ms
41,588 KB
testcase_10 AC 114 ms
41,312 KB
testcase_11 AC 120 ms
41,316 KB
testcase_12 AC 116 ms
41,832 KB
testcase_13 AC 125 ms
41,576 KB
testcase_14 AC 119 ms
41,356 KB
testcase_15 AC 104 ms
41,280 KB
testcase_16 AC 115 ms
41,132 KB
testcase_17 AC 117 ms
41,232 KB
testcase_18 AC 128 ms
41,736 KB
testcase_19 AC 118 ms
41,240 KB
testcase_20 AC 124 ms
40,988 KB
testcase_21 AC 104 ms
41,700 KB
testcase_22 AC 114 ms
41,280 KB
testcase_23 AC 108 ms
41,876 KB
testcase_24 AC 97 ms
41,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    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 p = (int)Math.sqrt(sum);
        int z = 2*p-1;
        int move = 0;
        for(int i=0; i<N; i++){
            if(i<=p-1){
                int t=A[i]-(i+1);
                if(t>0){
                    move+=t;
                }
            }else if(i<=z-1){
                int t=A[i]-(z-i);
                if(t>0){
                    move+=t;
                }
            }else{
                move+=A[i];
            }
        }
        System.out.println(move);
    }
}
0