https://www.acmicpc.net/problem/1920 1920번: 수 찾기 첫째 줄에 자연수 N(1 ≤ N ≤ 100,000)이 주어진다. 다음 줄에는 N개의 정수 A[1], A[2], …, A[N]이 주어진다. 다음 줄에는 M(1 ≤ M ≤ 100,000)이 주어진다. 다음 줄에는 M개의 수들이 주어지는데, 이 수들 www.acmicpc.net 1. 문제 2. 정답 코드 import sys input = sys.stdin.readline # input()보다 빠른 sys.stdin.readline() 사용 # n n = int(input()) ns = list(map(int, input().split())) ns.sort() # 이진 탐색을 위한 오름차순 정렬 # m m = int(inpu..
https://www.acmicpc.net/problem/1924 1924번: 2007년 첫째 줄에 빈 칸을 사이에 두고 x(1 ≤ x ≤ 12)와 y(1 ≤ y ≤ 31)이 주어진다. 참고로 2007년에는 1, 3, 5, 7, 8, 10, 12월은 31일까지, 4, 6, 9, 11월은 30일까지, 2월은 28일까지 있다. www.acmicpc.net 1. 문제 2. 정답 코드 m, d = map(int, input().split()) MONTH = [31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] DAYS = ['MON', 'TUE', 'WED', 'THU', 'FRI', 'SAT', 'SUN'] # 1월 1일 월요일 total_days = d # 입력 월의 day..
1. 문제 2. 정답 코드 import sys input = sys.stdin.readline n = int(input()) li = [] for i in range(n) : x, y = map(int, input().split()) li.append((x, y)) for tu in sorted(li) : print(tu[0], tu[1]) sys.stdin.readine()은 input()보다 입력 속도가 더욱 빠르다. 리스트 안에 (x, y) 튜플을 원소로 넣고 sorted() 정렬을 사용하였다. 3. 새로 알게 된 내용 리스트 원소로 튜플이 있고, 이를 정렬할 경우 모든 원소에 대해 정렬이 된다. 즉, 출제된 문제대로 x를 오른차순으로 정렬하고, x 값이 동일할 경우 y에 대해 오름차순 정렬을 진행..
1. 프로젝트 repository의 README-kor.md 파일 작성 제안서 내용 순서를 README 파일에 어울리게끔 재배치하였다. https://github.com/YejinHwang-D/rm-execpt-files/blob/main/README-kor.md GitHub - YejinHwang-D/rm-execpt-files: written in shell script written in shell script. Contribute to YejinHwang-D/rm-execpt-files development by creating an account on GitHub. github.com 2. GNU 라이브러리 컴파일 문제 해결 A. 기존 컴파일 문제 /home/kmi0817 디렉터리에서 “git ..