백준 BAEKJOON 30087번 진흥원 세미나 [PYTHON/파이썬]
백준 BAEKJOON 30087번 진흥원 세미나 [PYTHON/파이썬] (BRONZE Ⅴ) https://www.acmicpc.net/problem/30087 30087번: 진흥원 세미나 $N$개의 줄에 걸쳐서 각 세미나가 어느 교실에서 열리는지 한 줄에 하나씩 출력한다. www.acmicpc.net 딕셔너리를 구현하여 풀었다. seminar = { "Algorithm": "204", "DataAnalysis": "207", "ArtificialIntelligence": "302", "CyberSecurity": "B101", "Network": "303", "Startup": "501", "TestStrategy": "105", } N = int(input()) for _ in range(N): L =..