프로그래밍56 (파이썬) 백준 알고리즘 10871번 문제풀이 (Python) 123456N, X = map(int, input().split())A = list(map(int,input().split())) for i in range(N): if A[i] 2018. 12. 2. (파이썬) 백준 알고리즘 10817번 문제풀이 (Python)12345N = list(map(int, input().split())) N.sort(reverse = True) print(N[1])cs키워드 (Keyword)sort리스트를 정렬 (새로운 리스트 리턴 x)디폴트는 오름차순 정렬해주며 내림차순 정렬시 sort(reverse=True)로 사용한다.sorted리스트를 정렬 (새로운 리스트 리턴 O)디폴트는 오름차순 정렬해주며 내림차순 정렬시 sorted(list,reverse=True)로 사용한다. 참조장삼용, 초보자를 위한 파이썬 200제, 정보문화사(2017) 문제 출처https://www.acmicpc.net/problem/10817 2018. 12. 2. (파이썬) 백준 알고리즘 9498번 문제 풀이 (Python)123456789101112score = int(input()) if score >= 90 and score = 80 and score = 70 and score = 60 and score 2018. 12. 2. (파이썬) 백준 알고리즘 11721번 문제풀이 (Python)1234a = input() for i in range(0,len(a),10): print(a[i:i+10])cs 문제 출처https://www.acmicpc.net/problem/11721 2018. 12. 2. (파이썬) 백준 알고리즘 11720번 문제풀이 (Python)12345678n = int(input())a = input() sum = 0for i in range(n): sum += int(a[i]) print(sum)cs 문제 출처https://www.acmicpc.net/problem/11720 2018. 12. 2. (파이썬) 백준 알고리즘 8393번 문제풀이 (Python) 1234567n = int(input()) sum = 0for i in range(n): sum+= (i+1) print(sum)cs 문제 출처https://www.acmicpc.net/problem/8393 2018. 12. 2. 이전 1 ··· 3 4 5 6 7 8 9 10 다음