사용자 도구

사이트 도구


ps:problems:boj:10773

제로

ps
링크acmicpc.net/…
출처BOJ
문제 번호10773
문제명제로
레벨실버 4
분류

스택

시간복잡도O(n)
인풋사이즈n<=100,000
사용한 언어Python
제출기록32540KB / 120ms
최고기록60ms
해결날짜2021/07/29

풀이

  • 그냥 시키는 대로 시뮬레이션 하면 되는 문제. 숫자들을 스택을 이용해서 저장하면 된다.
  • 시간복잡도는 O(n)

코드

"""Solution code for "BOJ 10773. 제로".

- Problem link: https://www.acmicpc.net/problem/10773
- Solution link: http://www.teferi.net/ps/problems/boj/10773
"""

import sys


def main():
    K = int(sys.stdin.readline())
    stack = []
    for _ in range(K):
        num = sys.stdin.readline().rstrip()
        if num == '0':
            stack.pop()
        else:
            stack.append(num)

    print(sum(int(x) for x in stack))


if __name__ == '__main__':
    main()

토론

댓글을 입력하세요:
K S G Y᠎ T
 
ps/problems/boj/10773.txt · 마지막으로 수정됨: 2023/05/16 10:40 저자 teferi