結果
| 問題 |
No.365 ジェンガソート
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2022-08-13 03:01:02 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 11 ms / 2,000 ms |
| コード長 | 341 bytes |
| コンパイル時間 | 1,978 ms |
| コンパイル使用メモリ | 193,640 KB |
| 最終ジャッジ日時 | 2025-01-30 22:06:29 |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 41 |
ソースコード
#include <bits/stdc++.h>
#define rep(i,n) for(int i = 0; i < (n); i++)
using namespace std;
typedef long long ll;
int main(){
cin.tie(0);
ios::sync_with_stdio(0);
int N; cin >> N;
vector<int> a(N);
rep(i,N) cin >> a[i];
int x = N;
for(int i = N - 1; i >= 0; i--) if(a[i] == x) x--;
cout << x << endl;
}