結果

問題 No.77 レンガのピラミッド
ユーザー リチウムリチウム
提出日時 2014-11-26 22:07:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 128 ms / 5,000 ms
コード長 591 bytes
コンパイル時間 2,588 ms
コンパイル使用メモリ 74,708 KB
実行使用メモリ 41,820 KB
最終ジャッジ日時 2024-06-11 04:07:49
合計ジャッジ時間 6,028 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,156 KB
testcase_01 AC 113 ms
41,236 KB
testcase_02 AC 111 ms
41,320 KB
testcase_03 AC 112 ms
41,232 KB
testcase_04 AC 128 ms
41,384 KB
testcase_05 AC 111 ms
41,556 KB
testcase_06 AC 123 ms
41,820 KB
testcase_07 AC 112 ms
41,412 KB
testcase_08 AC 122 ms
41,620 KB
testcase_09 AC 111 ms
41,436 KB
testcase_10 AC 107 ms
40,832 KB
testcase_11 AC 103 ms
40,492 KB
testcase_12 AC 123 ms
41,524 KB
testcase_13 AC 117 ms
41,208 KB
testcase_14 AC 114 ms
41,576 KB
testcase_15 AC 105 ms
40,448 KB
testcase_16 AC 118 ms
41,436 KB
testcase_17 AC 99 ms
40,304 KB
testcase_18 AC 126 ms
41,660 KB
testcase_19 AC 108 ms
40,040 KB
testcase_20 AC 110 ms
40,640 KB
testcase_21 AC 98 ms
40,312 KB
testcase_22 AC 111 ms
41,320 KB
testcase_23 AC 103 ms
40,060 KB
testcase_24 AC 111 ms
41,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import static java.lang.Math.*;

public class Main {
	
	
  public static void main(String[] args) {
	  Scanner sc=new Scanner(System.in);
	  int n=sc.nextInt();
	  int A[]=new int[10000];
	  int sum=0;
	  for(int i=0;i<n;i++){
		  A[i]=sc.nextInt();
		  sum+=A[i];
	  }
	  int w=(int)pow(sum,0.5);
	  int end=w*2-2;
	  int ans=0;
	  for(int i=0;i<w;i++){
		  ans+=max(A[i]-(i+1),0);
	  }
	  for(int i=w;i<=end;i++){
		  ans+=max(0,A[i]-(end-i+1));
	  }
	  for(int i=end+1;i<10000;i++){
		  ans+=A[i];
	  }
	  System.out.println(ans);
	  
  }}
0