Codeup 1527 - [기초-함수작성] 함수로 123 값 출력하기 https://codeup.kr/problem.php?id=1527 Codeup 1527 - [기초-함수작성] 함수로 123 값 출력하기 작성언어: Cxxxxxxxxxxvoid f(){ printf("%d\n", 123); return;}pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1526 - [기초-함수작성] 함수로 hello 문자열 출력하기 https://codeup.kr/problem.php?id=1526 Codeup 1526 - [기초-함수작성] 함수로 hello 문자열 출력하기 작성언어: Cvoid f(){ printf("hello\n"); return;}pc 환경에서 코드를 보는 것을 권장합니다. Codeup 1524 - 지뢰 찾기 1 https://codeup.kr/problem.php?id=1524 Codeup 1524 - 지뢰 찾기 1 작성 언어 Pythonmatrix = [[0]*11 for i in range(11)]for i in range(1, 10): input_list = list(map(int, input().split())) for j in range(0, 9): matrix[i][j+1] = input_list[j]r, c = map(int, input().split())if matrix[r][c] == 1: print('-1')else: mine = matrix[r-1][c-1] + matrix[r-1][c] + matrix[r-1][c+1] + \ matrix[r][c-1] + matrix[r][c+1] +.. Codeup 1515 - 생명 게임 1 https://codeup.kr/problem.php?id=1515 Codeup 1515 - 생명 게임 1 작성 언어 Pythonxmatrix = [[0]*27 for i in range(27)]next_generation = [[0]*27 for i in range(27)]for i in range(1, 26): input_list = list(map(int, input().split())) for j in range(0, 25): matrix[i][j+1] = input_list[j]for i in range(1, 26): for j in range(1, 26): life = matrix[i-1][j-1] + matrix[i][j-1] + matrix[i+1][j-1] + \ matrix[i-1.. BOJ 2884 - 알람 시계 https://www.acmicpc.net/problem/2884 BOJ 2884 - 알람 시계 작성 언어 Python3h, m = map(int, input().split())if m BOJ 2753 - 윤년 https://www.acmicpc.net/problem/1330 BOJ 1330 - 두 수 비교하기 작성언어 Python3xa, b = map(int, input().split())if a > b: print('>')elif b > a: print(' BOJ 1330 - 두 수 비교하기 https://www.acmicpc.net/problem/1330 BOJ 1330 - 두 수 비교하기 작성언어 Python3xa, b = map(int, input().split())if a > b: print('>')elif b > a: print(' BOJ 10171 - 고양이 https://www.acmicpc.net/problem/10171 BOJ 10171 - 고양이 작성 언어 Python3print('\\ /\\')print(" ) ( ')")print('( / )')print(' \(__)|') 이전 1 ··· 4 5 6 7 8 9 10 ··· 36 다음