전체 글 (60) 썸네일형 리스트형 [백준] 7568 덩치 https://www.acmicpc.net/problem/7568 package main import ( "bufio" "fmt" "os" ) var writer = bufio.NewWriter(os.Stdout) var reader = bufio.NewReader(os.Stdin) func printf(f string, a ...interface{}) { fmt.Fprintf(writer, f, a...) } func scanf(f string, a ...interface{}) { fmt.Fscanf(reader, f, a...) } func main() { defer writer.Flush() var n int scanf("%d\n", &n) var h [51]int var w [51]int for .. [백준] 2231 분해합 https://www.acmicpc.net/problem/2231 package main import ( "bufio" "fmt" "os" ) var writer = bufio.NewWriter(os.Stdout) var reader = bufio.NewReader(os.Stdin) func printf(f string, a ...interface{}) { fmt.Fprintf(writer, f, a...) } func scanf(f string, a ...interface{}) { fmt.Fscanf(reader, f, a...) } func concon(n int) int { result := n for ; n > 0; n /= 10 { result = result + n%10 } return res.. [백준] 2798 블랙잭 https://www.acmicpc.net/problem/2798 발생할 수있는 모든 경우의 수를 조합으로 찾아서 푼다. 찾는 과정에서 조건을 걸어서 더 찾지 않아도 되는 구간은 넘어가게 했다. package main import ( "bufio" "fmt" "os" ) var reader = bufio.NewReader(os.Stdin) var writer = bufio.NewWriter(os.Stdout) func printf(f string, a ...interface{}) { fmt.Fprintf(writer, f, a...) } func scanf(f string, a ...interface{}) { fmt.Fscanf(reader, f, a...) } var n, m, result int va.. [python] jupyter not implemented 에러 https://github.com/jupyter/notebook/issues/5094 NotImplemented Error Jupyter Notebook · Issue #5094 · jupyter/notebook i had currently install jupyter notebook for python3.8 by using this command pip install jupyter everything looks fine but when i try to open notebook via jupyter notebook it gives me this error, T... github.com jupyter notebook jupyter lab 등등 다 에러 나면서 켜지지를 않았다. tools\miniconda3.. [python] conda 설치, 설정, 가상환경만들기 window에서 진행했다. 1. 설치 나는 miniconda3를 설치했다. choco install miniconda3 2. 터미널 설정 https://dev.to/azure/easily-add-anaconda-prompt-in-windows-terminal-to-make-life-better-3p6j Easily add Anaconda Prompt to Windows Terminal to make life better dev.to 3. 업데이트를 해준다. conda update -n base -c defaults conda 4. 가상환경 만들기 conda create -n 이름 파이썬 버전을 설정할 때는 conda create -n 이름 python=x.y anaconda 5. 가상환경 사용하기 사용할.. [python] virtualenv 설치 window10 python3.8.1 python -m pip install virtualenv or python3 -m pip install virtualenv virtaulenv 이름 venv디렉토리/Scripts/activate 를 실행해준다. (powershell에서는 앞에 venv이름이 나오지 않아서 cmd로 다시 켰다.) 끝. 이제 원하는 패키지를 설치해서 사용하면 된다. [백준] 11729 하노이 탑 이동 순서 https://www.acmicpc.net/problem/11729 golang의 fmt 패키지는 기본적으로 buffer를 사용하지 않기 때문에 그냥 출력이나 입력을 하면 느리다고한다. 그냥 출력으로 했더니 시간초과 났다. 아래와 같이 buffer를 사용하게 바꾸니까 맞았다. 하노이 탑 개수는 대충 계산해보니까 등비수열 비슷한것 이었다. 내부 함수는 어떻게 진행되는지 찾아서 풀었다. package main import ( "bufio" "fmt" "math" "os" ) var out = bufio.NewWriter(os.Stdout) func hanoi(s, d int, n float64) { if n == 1 { fmt.Fprintf(out, "%d %d\n", s, d) return } m := 6.. [백준] 2447 별 찍기 - 10 https://www.acmicpc.net/problem/2447 문제설명 3의 배수 N이 입력되면 그에 맞춰서 재귀적으로 별을 찍으면 된다. 입력 27 출력 *************************** * ** ** ** ** ** ** ** ** * *************************** *** ****** ****** *** * * * ** * * ** * * * *** ****** ****** *** *************************** * ** ** ** ** ** ** ** ** * *************************** ********* ********* * ** ** * * ** ** * ********* ********* *** *** *** ***.. 이전 1 ··· 3 4 5 6 7 8 다음