結果

問題 No.365 ジェンガソート
ユーザー discoNekodiscoNeko
提出日時 2016-04-29 22:36:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 212 ms / 2,000 ms
コード長 852 bytes
コンパイル時間 2,159 ms
コンパイル使用メモリ 74,772 KB
実行使用メモリ 49,044 KB
最終ジャッジ日時 2024-10-12 01:40:51
合計ジャッジ時間 8,479 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
36,600 KB
testcase_01 AC 53 ms
36,376 KB
testcase_02 AC 53 ms
36,680 KB
testcase_03 AC 52 ms
36,588 KB
testcase_04 AC 52 ms
36,736 KB
testcase_05 AC 51 ms
36,712 KB
testcase_06 AC 54 ms
36,716 KB
testcase_07 AC 51 ms
36,660 KB
testcase_08 AC 51 ms
36,364 KB
testcase_09 AC 52 ms
36,724 KB
testcase_10 AC 51 ms
36,756 KB
testcase_11 AC 52 ms
36,680 KB
testcase_12 AC 52 ms
36,336 KB
testcase_13 AC 52 ms
36,608 KB
testcase_14 AC 51 ms
36,592 KB
testcase_15 AC 52 ms
36,496 KB
testcase_16 AC 177 ms
45,960 KB
testcase_17 AC 208 ms
48,952 KB
testcase_18 AC 91 ms
38,688 KB
testcase_19 AC 204 ms
49,044 KB
testcase_20 AC 129 ms
41,212 KB
testcase_21 AC 115 ms
40,680 KB
testcase_22 AC 184 ms
45,744 KB
testcase_23 AC 138 ms
44,928 KB
testcase_24 AC 180 ms
45,748 KB
testcase_25 AC 114 ms
40,048 KB
testcase_26 AC 157 ms
45,296 KB
testcase_27 AC 209 ms
48,992 KB
testcase_28 AC 157 ms
45,624 KB
testcase_29 AC 206 ms
48,980 KB
testcase_30 AC 163 ms
45,560 KB
testcase_31 AC 120 ms
40,928 KB
testcase_32 AC 121 ms
40,820 KB
testcase_33 AC 200 ms
48,944 KB
testcase_34 AC 108 ms
40,308 KB
testcase_35 AC 181 ms
45,800 KB
testcase_36 AC 208 ms
48,488 KB
testcase_37 AC 197 ms
48,412 KB
testcase_38 AC 210 ms
48,944 KB
testcase_39 AC 206 ms
48,784 KB
testcase_40 AC 212 ms
48,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
import java.math.*;
 
public class Main {
  public static void main(String[] args)throws IOException{
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringBuilder sb = new StringBuilder();
    int n = Integer.parseInt(br.readLine());
    String[] str = br.readLine().split(" ");
    int max = 0;
    int[] a = new int [n];
    for(int i = 0; i < n; i++){
      a[i] = Integer.parseInt(str[i]);
      max = Math.max(max,a[i]);
    }
    int sum = 0;
    int chain = 0;
    for(int i = n-1; i >-1 ; i--){
      if(a[i]==max){
        sum += chain;
        chain = 0;
        max--;
      }else{
        chain++;
      }
    }
    if(chain>0)sum+=chain;
    sb.append(sum);
    System.out.println(sb);
  }
}
0