結果

問題 No.365 ジェンガソート
ユーザー sio_puyosio_puyo
提出日時 2016-04-29 23:30:07
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 30 ms / 2,000 ms
コード長 386 bytes
コンパイル時間 1,424 ms
コンパイル使用メモリ 160,284 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-12 01:47:54
合計ジャッジ時間 2,973 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 41
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
typedef long long LL;
#define SORT(c) sort((c).begin(),(c).end())

#define FOR(i,a,b) for(int i=(a);i<(b);++i)
#define REP(i,n)  FOR(i,0,n)

using namespace std;
int main(void)
{
  int n;
  cin >> n;
  vector<int> a;
  a.resize(n);
  REP(i,n) cin >> a[i];
  int answer=n;
  REP(i,n)
    if(a[n-1-i]==answer) --answer;
  cout << answer << endl;
  
  return 0;
}
0