이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#pragma GCC optimize("O2")
#include <cstdint>
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <vector>
#include <deque>
#include <set>
#include <map>
#include <stack>
#include <string>
#include <limits>
#include <assert.h>
#include <cmath>
#include <algorithm>
using namespace std;
using ll = long long int;
const ll mod = 1e9;
int main(){
	cin.tie(0);
	ios_base::sync_with_stdio(false);
  int n;
  cin >> n;
  stack<ll> sep;
  ll max_e = 0;
  for(int i = 0; i < n; ++i){
    ll b;
    cin >> b;
    b = (b + sep.size()) % mod;
    max_e  = max(max_e, b);
    while(!sep.empty() && sep.top() >= b){
      sep.pop();
    }
    if(max_e == b)
      sep.push(b);
    cout << sep.size() << endl;
  }
}
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... | 
| # | Verdict | Execution time | Memory | Grader output | 
|---|
| Fetching results... |