[백준 11050] 이항계수 1 - GoLang
2022-05-01 11:26

[백준 11050] 이항계수 1 - GoLang

https://www.acmicpc.net/problem/11050
 
 
package main
import (
"bufio"
"fmt"
"os"
)
func factorial(t int) int {
ans := 1
f...
solved.ac
11050
go
golang
백준
솔브드
이항계수
005

댓글