컴퓨터공학/기타 프로그래밍

[Python3] 백준 문제 풀이에 사용되는 입력 코드

TaeGyeong Lee 2023. 6. 25. 19:13

자주 사용하는 입력 양식입니다. 

test_cases = int(input())

for _ in range(test_cases):
    n = int(input())

    values1 = list(map(int, input().split()))
    values2 = list(map(int, input().split()))
    
    #...