Submission #667203

# Submission time Handle Problem Language Result Execution time Memory
667203 2022-11-30T17:48:29 Z ktkerem Editor (BOI15_edi) C++17
15 / 100
49 ms 3712 KB
/*#pragma GCC target ("avx2")
#pragma GCC optimize ("O3")
#pragma GCC optimize("Ofast")
#pragma GCC optimize ("unroll-loops")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")/**/
#include<bits/stdc++.h>
/**/
//typedef int ll;
typedef long long ll;
typedef unsigned long long ull;
typedef std::string str;
//typedef vector<std::vector<ll>> vv; 
/*typedef __int128 vll;
typedef unsigned __int128 uvll;*/
#define llll std::pair<ll , ll>
#define pb push_back
#define pf push_front
#define halo cout << "hello\n"
#define fi first
#define sec second
#define vv(x) std::vector<std::vector<x>>
#define all(a) a.begin() , a.end()
const ll limit = 1e9+7; 
const ll ous = 5e5 + 7;
const ll dx[4] = {-1 , 0 , 1 , 0} , dy[4] = {0,1,0,-1};
template <typename T> std::string type_name();
ll n , m;std::vector<ll> ar;
void solve(){
    std::cin >> n;
    std::vector<ll> v;
    v.pb(0);
    for(ll i =0;n>i;i++){
        ll x;std::cin >> x;
        if(v.size() > 1 && 0 > x){
            v.pop_back();
        }
        if(0 <= x){
            v.pb(x);
        }
        std::cout << v.back() << "\n";
    }
    return;/**/
}
signed main(){
    std::ios_base::sync_with_stdio(false);std::cin.tie(NULL);
    ll t=1;
    //std::cin >> t;
    ll o = 1;
    while(t--){ 
        //cout << "Case " << o++ << ":\n";
        solve();
    }
    return 0;
}/**/

Compilation message

edi.cpp:5:78: warning: "/*" within comment [-Wcomment]
    5 | #pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")/**/
      |                                                                               
edi.cpp: In function 'int main()':
edi.cpp:48:8: warning: unused variable 'o' [-Wunused-variable]
   48 |     ll o = 1;
      |        ^
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 316 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 49 ms 3712 KB Output is correct
2 Correct 49 ms 3700 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 24 ms 2848 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 0 ms 316 KB Output isn't correct
2 Halted 0 ms 0 KB -