結果

問題 No.365 ジェンガソート
ユーザー mojamoja
提出日時 2016-05-30 17:14:10
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 321 bytes
コンパイル時間 1,209 ms
コンパイル使用メモリ 159,760 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-16 18:44:35
合計ジャッジ時間 3,012 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 1 ms
6,940 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 WA -
testcase_12 AC 1 ms
6,940 KB
testcase_13 AC 1 ms
6,944 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 10 ms
6,944 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 17 ms
6,944 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 6 ms
6,944 KB
testcase_35 WA -
testcase_36 AC 29 ms
6,944 KB
testcase_37 AC 29 ms
6,940 KB
testcase_38 AC 29 ms
6,944 KB
testcase_39 AC 29 ms
6,940 KB
testcase_40 AC 29 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
int a[100000];
int main(){
  int n;
  cin>>n;
  int maxx=-1;
  int maxc=1;
  for(int i=0;i<n;i++){
    cin>>a[i];
  }
  maxx=a[n-1];
  for(int i=n-1;i>=0;i--){
    //cout<<a[i]<<endl;
    if(maxx-1 == a[i]){
      maxc++;
      maxx = a[i];
    }
  }

  cout<<n-maxc<<endl;
}
0