문제가 살짝 이상한 감이 없잖아 있다. 입력 부분의 설명이 조금 불친절하다랄까.

첫 번째 입력 T(test case)가 살짝 설명이 이상하다고 느낄 수 있는데, T는 무시가 되는 것이 아니라 2번과 나머지 입력값에 대해서 반복을 몇 번 할 것인가에 대한 입력값이다.

코드를 보면 더 잘 이해가 갈 것으로 생각된다.


1
2
3
4
5
6
7
test_case = int(input())
for i in range(test_case):
    problems = int(input())
    for j in range(problems):
        numbers = list(map(int, input().split()))
        print(numbers[0]+numbers[1], numbers[0]*numbers[1])
 
cs

 

 

출처: https://www.acmicpc.net/problem/18398

 

18398번: HOMWRK

In one of the beautiful cities of Afghanistan two sisters are going to program a simple game to help them solve their mathematics homework. Their homework asks them to calculate the sum and multiplication of two numbers. Your task is to help them to build

www.acmicpc.net

 

+ Recent posts