結果
問題 | No.365 ジェンガソート |
ユーザー |
![]() |
提出日時 | 2020-02-13 05:12:02 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 27 ms / 2,000 ms |
コード長 | 261 bytes |
コンパイル時間 | 504 ms |
コンパイル使用メモリ | 70,472 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-05 00:19:42 |
合計ジャッジ時間 | 2,133 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 41 |
ソースコード
#include <iostream> #include <vector> using namespace std; int main(void) { int n; cin >> n; vector<int> v(n); for (int i = 0; i < n; ++i) cin >> v[i]; int x = n; for (int i = n - 1; i >= 0; --i) { if (v[i] == x) --x; } cout << x << endl; return 0; }