Submission #1779538


Source Code Expand

WEST = 'West'
EAST = 'East'
ZERO = '0'

def print_x(x):
    if x:
        abs_x = abs(x)
        return f'{WEST} {abs_x}' if x > 0 else f'{EAST} {abs_x}'
    return ZERO

def calc_move(min_move, max_move, move):
    if min_move > move:
        return min_move
    elif max_move < move:
        return max_move
    return move

def calc_x(moves):
    pos = 0
    for move in moves:
        move_x = calc_move(MIN_MOVE, MAX_MOVE, int(move[1]))
        pos += move_x if move[0] == WEST else move_x * -1
    return pos


TIMES, MIN_MOVE, MAX_MOVE = map(int, input().split())
MOVES = [ list(input().split()) for _ in range(TIMES) ]

x = calc_x(MOVES)
print(print_x(x))

Submission Info

Submission Time
Task B - 双子とスイカ割り
User minimalism000
Language Python (3.4.3)
Score 0
Code Size 692 Byte
Status RE
Exec Time 17 ms
Memory 2940 KB

Judge Result

Set Name Sample All
Score / Max Score 0 / 0 0 / 100
Status
RE × 3
RE × 36
Set Name Test Cases
Sample sample-01.txt, sample-02.txt, sample-03.txt
All sample-01.txt, sample-02.txt, sample-03.txt, test-01.txt, test-02.txt, test-03.txt, test-04.txt, test-05.txt, test-06.txt, test-07.txt, test-08.txt, test-09.txt, test-10.txt, test-11.txt, test-12.txt, test-13.txt, test-14.txt, test-15.txt, test-16.txt, test-17.txt, test-18.txt, test-19.txt, test-20.txt, test-21.txt, test-22.txt, test-23.txt, test-24.txt, test-25.txt, test-26.txt, test-27.txt, test-28.txt, test-29.txt, test-30.txt, sample-01.txt, sample-02.txt, sample-03.txt
Case Name Status Exec Time Memory
sample-01.txt RE 17 ms 2940 KB
sample-02.txt RE 17 ms 2940 KB
sample-03.txt RE 17 ms 2940 KB
test-01.txt RE 17 ms 2940 KB
test-02.txt RE 17 ms 2940 KB
test-03.txt RE 17 ms 2940 KB
test-04.txt RE 17 ms 2940 KB
test-05.txt RE 16 ms 2940 KB
test-06.txt RE 17 ms 2940 KB
test-07.txt RE 17 ms 2940 KB
test-08.txt RE 17 ms 2940 KB
test-09.txt RE 17 ms 2940 KB
test-10.txt RE 17 ms 2940 KB
test-11.txt RE 17 ms 2940 KB
test-12.txt RE 17 ms 2936 KB
test-13.txt RE 17 ms 2940 KB
test-14.txt RE 17 ms 2940 KB
test-15.txt RE 17 ms 2940 KB
test-16.txt RE 17 ms 2940 KB
test-17.txt RE 16 ms 2940 KB
test-18.txt RE 17 ms 2940 KB
test-19.txt RE 17 ms 2940 KB
test-20.txt RE 17 ms 2940 KB
test-21.txt RE 17 ms 2940 KB
test-22.txt RE 17 ms 2940 KB
test-23.txt RE 17 ms 2940 KB
test-24.txt RE 17 ms 2940 KB
test-25.txt RE 17 ms 2940 KB
test-26.txt RE 17 ms 2940 KB
test-27.txt RE 17 ms 2940 KB
test-28.txt RE 17 ms 2940 KB
test-29.txt RE 17 ms 2940 KB
test-30.txt RE 17 ms 2940 KB