BOJ10773
1248 ワード
BOJ10773. ゼロ。
質問する
コード#コード#
#include <iostream>
#include <stack>
using namespace std;
int main(int argc, char const *argv[])
{
cin.tie(NULL);
ios::sync_with_stdio(false);
int n, num;
cin >> n;
stack<int> st;
for (int i = 0; i < n; i++)
{
cin >> num;
if (num != 0)
{
st.push(num);
}
else if (num == 0)
{
st.pop();
}
}
int sum = 0;
while (!st.empty())
{
sum += st.top();
st.pop();
}
cout << sum << endl;
return 0;
}
#include <iostream>
#include <stack>
using namespace std;
int main(int argc, char const *argv[])
{
cin.tie(NULL);
ios::sync_with_stdio(false);
int n, num;
cin >> n;
stack<int> st;
for (int i = 0; i < n; i++)
{
cin >> num;
if (num != 0)
{
st.push(num);
}
else if (num == 0)
{
st.pop();
}
}
int sum = 0;
while (!st.empty())
{
sum += st.top();
st.pop();
}
cout << sum << endl;
return 0;
}
(もっと簡単な問題のようで、5分以内に解決!🙂)
Reference
この問題について(BOJ10773), 我々は、より多くの情報をここで見つけました https://velog.io/@aksel26/BOJ10773テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol