본문 바로가기
프로그래밍/기타 프로그래밍

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

by TaeGyeong Lee 2023. 6. 25.

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

test_cases = int(input())

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

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