jung2381187   5년 전

구데기컵은 반성해야 합니다.

문제 설명도 제대로 안 되어있으면서 그 설명조차 예제랑 모순됩니다(...)

문제 설명을 아래와 같이 바꿔주세요. 또, 수정하는 김에 한국어 번역도 추가해주세요.

영어:

Your job is to write an interpreter for a small list calculator. The interpreter must be able to handle various expressions that consist of the following operators (from most tightly bound to least tightly bound): parentheses, array slicing, unary operator, binary operator, list concatenation, and assignment. 

An array slicing operator follows the [begin:end] format and is applied as a postfix to an expression. Items are 0-indexed and include the beginning item but do not include the end item. Thus L[1:3] takes from the second to the third element of the list L. The begin or end may be omitted and is expected to mean all items from the beginning or all items until the end, respectively. If the end is less than or equal to the begin, the result will be an empty list. The begin and end do not exceed 15. All indices are not out of range.

A unary operator (+, -, *, /) on a list continuously removes the first two items of the list, and replaces them with the result of the operator being applied. For example +(1:2:4) takes 1 and 2 off the front of the list, applies "+" to them, to get 3 which is placed on the front of the list, leaving +(3:4). Again we take the first two items, remove them, apply +, and insert the result into the front of the list, leaving +(7). Now the list has fewer than two items so we return the list 7. Unary operators are applied only to finite, non-empty lists.

A binary operator (+, -, *, /) is applied to the first element of both lists, then the second element and so on. If one list is shorter than the other, then the shorter list is padded with its last item until both lists are the same length. Thus (1:2:3)+(4:5) is (5:7:8). Note that applying a binary operator to an empty list produces an empty list. For example, A-A[2:2] must result in an empty list, for A[2:2] is empty. Binary multiplication and division have the higher precedence than addition and subtraction.

List concatenation is provided with the colon (:) operator. Standalone numbers are assumed to be a list containing a single item. 

Assignment is provided with the equals sign (=) operator. Variables are single letters, case sensitive, and never redefined. The definition of a variable must not contain any variable that has not been defined previously, but can contain the variable itself as recursive definition. 

All divisions are integer divisions and follow the integer division rule in C/C++. None of the expressions will cause a division by zero. The given numbers are always integers and are not directly followed by a unary operator. Every integer appearing in the calculation can be represented by 32-bit integers.

입력

Input will consist of several lines. Each line is assignment statement or print statement, which is starting with the keyword “print." The length of each line is less than or equal to 50 and the total number of lines does not exceed 30.

출력

For each print statement, print the result of an expression followed by the keyword to standard output. Items of the expression must be separated with a colon (:) with no spaces. The maximum number of items to be output will be no more than 15.

한국어:

리스트를 계산할 수 있는 인터프리터를 만들어보자. 이 인터프리터는 (우선순위가 높은 것에서 낮은 것 순으로) 괄호, 배열 슬라이싱, 단항 연산자, 이항 연산자, 리스트 이어붙이기, 대입 연산자를 포함하는 여러 표현식을 다룰 수 있어야 한다.

배열 슬라이싱 연산자는 [begin:end] 형식을 따르며, 표현식 뒤에 놓여 해당 리스트의 부분 리스트를 반환한다. 인덱스는 0부터 세고, begin은 포함하지만 end는 포함하지 않는다. 따라서 L[1:3]은 리스트 L의 2번째 원소부터 3번째 원소까지를 의미한다. begin이나 end는 생략할 수 있다. begin이 생략되면 0, end가 생략되면 리스트의 길이인 것으로 보면 된다. 만약 end가 begin보다 작거나 같으면 결과는 빈 리스트이다. begin과 end는 15를 넘지 않는다. 인덱스가 범위를 벗어나는 일 또한 없다.

단항 연산자(+, -, *, /)는 리스트 앞에 놓여 리스트의 첫 두 원소를 삭제하고, 두 원소에 해당 연산자를 이항 연산자로 적용한 다음, 결과를 다시 리스트의 제일 앞에 넣는 작업을 반복한다. 예를 들어 +(1:2:4)는 1과 2를 삭제하고, 둘을 더한 3을 리스트 앞에 넣어서 +(3:4)가 된다. 다시 3과 4를 삭제하고, 둘을 더한 7을 리스트 앞에 넣으면 +(7)이 된다. 이제 리스트가 원소 하나만을 포함하므로 결과값은 7이 된다. 계산 과정에서 단항 연산자가 무한하거나 빈 리스트에 적용되는 일은 없다.

이항 연산자(+, -, *, /)는 두 리스트의 대응하는 위치에 있는 원소끼리 연산한다. 만약 한 리스트가 다른 쪽보다 짧으면, 짧은 쪽의 마지막 원소를 뒤에 더 넣어 둘의 길이를 맞춘다. 따라서 (1:2:3)+(4:5)는 (4:5)의 뒤에 마지막 원소인 5를 하나 더 넣어 (4:5:5)로 길이를 맞춰주고, 대응하는 위치끼리 더하여 (5:7:8)이 된다. 한쪽 리스트가 아예 빈 리스트이면 연산 결과는 빈 리스트이다. 예시로 A-A[2:2]는 뒤쪽이 빈 리스트이므로 결과도 빈 리스트이다. 이항 곱셈과 나눗셈은 덧셈과 뺄셈보다 우선순위가 높다.

리스트 이어붙이기는 쌍점(:) 연산자로 주어진다. 상수는 길이 1짜리 리스트로 본다.

대입은 등호(=) 연산자로 주어진다. 모든 변수는 한 글자이고, 대소문자를 구분하며 재정의되지 않는다. 변수의 정의는 이전에 정의되지 않은 변수를 포함하지 않지만, 자기 자신을 재귀적 정의로 포함하는 건 가능하다.

모든 나눗셈은 정수 나눗셈이고 C/C++의 정수 나눗셈 규칙을 따른다. 0으로 나누는 일은 발생하지 않는다. 표현식에 있는 상수는 항상 정수이고, 단항 연산자가 상수 바로 앞에 놓이는 경우는 없다. 계산 과정에서 나타나는 모든 정수는 32비트 정수형으로 표현할 수 있다.

입력

입력은 여러 줄로 구성된다. 각 줄은 대입문 또는 “print” 키워드로 시작하는 출력문이다. 각 줄의 길이는 50보다 작거나 같고, 입력은 30줄을 넘지 않는다.

출력

각 출력문마다 키워드 뒤에 오는 리스트의 원소를 공백 없이 쌍점(:)으로 구분하여 출력한다. 출력할 리스트의 길이는 항상 15보다 크지 않다.

jh05013   5년 전

34fd20bb-7365-4ef2-89db-a9ea4c358f32

제 1회 진짜 구데기컵이 2019년 4월 1일에 열립니다. 많이 참여해주세요!

ntopia   5년 전

이거 0으로 나누면 어떻게 해야 하나요?

jh05013   5년 전

원래 "None of the expressions will cause a division by zero." 라는 말이 있었는데 여기에 없네요.

jh05013   5년 전

데이터를 몰라서 정확한 값을 알 수 없지만, 입력의 길이, slicing의 최대 인덱스, 계산 중간 과정을 포함하여 나타나는 수의 최대 절대값, 입력의 개수 등도 언급되어야 합니다.

jung2381187   5년 전

@ntopia @jh05013 추가해보겠습니다

jung2381187   5년 전

입력의 길이, slicing의 최대 인덱스, 정수의 자료형, 입력의 개수를 확인하여 추가했습니다.

startlink   5년 전

설마 했는데 NZPC

startlink   5년 전

반영했습니다.

댓글을 작성하려면 로그인해야 합니다.