'Algorithm/backjoon' 카테고리의 글 목록
-
백준 파이썬 10814 숫자 카드 2
https://www.acmicpc.net/problem/10816 10816번: 숫자 카드 2 첫째 줄에 상근이가 가지고 있는 숫자 카드의 개수 N(1 ≤ N ≤ 500,000)이 주어진다. 둘째 줄에는 숫자 카드에 적혀있는 정수가 주어진다. 숫자 카드에 적혀있는 수는 -10,000,000보다 크거나 같고, 10,0 www.acmicpc.net Code import sys input = sys.stdin.readline n = int(input()) # 10 cards = list(map(int, input().split())) # [6, 3, 2, 10, 10, 10, -10, -10, 7, 3] m = int(input()) # 8 my_cards = list(map(int, input().spli..
Algorithm/backjoon
2023. 10. 16.
💲 추천 글