이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
def main():
(X, L, N) = map(int, raw_input().split())
flips = 0
S2 = [0 for _ in range(5)]
S1 = [0 for _ in range(5)]
COUNTER = X
while COUNTER > 0:
#print("S1: ", S1)
#print("S2: ", S2)
#print("COUNTER: ", COUNTER)
#print()
S2.append(S1.pop()) #Push the top element of S1 onto S2
#Pop the top element of S1
S1 = [v ^ 1 for v in S1]
flips = flips + 1
if S2[-1] > L:
#print("conter.dec", flips)
COUNTER = COUNTER - 1
if COUNTER == 0:
print S2[-1]
#print("total flips: ", flips)
else:
S2.append(N)
S2.append(N)
S2.append(S2.pop() + S2.pop())
S2.append(S2.pop() + S2.pop())
S1.append(S2[-1])
S1.append(S2.pop())
S2.pop()
q = int(input())
for i in range(q):
main()
# | 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... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |