본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 24724번 현대모비스와 함께하는 부품 관리

by 현장 2022. 5. 27.

-Code

import sys
input = sys.stdin.readline

for tc in range(1, int(input()) + 1):
    n = int(input())
    v_limit, w_limit = map(int, input().split())
    for _ in range(n):
        u, v = map(int, input().split())
    print(f"Material Management {tc}")
    print("Classification ---- End!")