boj 썸네일형 리스트형 [백준] 11444. 피보나치 수 6 11444번: 피보나치 수 6 첫째 줄에 n이 주어진다. n은 1,000,000,000,000,000,000보다 작거나 같은 자연수이다. www.acmicpc.net 1. 재귀를 사용하여 푸는 방법 def fib(n): return (0 if n == 0 else 1) if n 더보기 [BOJ] 백준 1009번 분산처리 내가 쓴 코드 ... 왜 틀렸는지 모르겠다. class Program { static void Main(string[] args) { string sT = Console.ReadLine(); int T = Convert.ToInt32(sT); int[] output = new int[T]; for (int i = 0; i int.Parse(s)); int result = input[0]; int[] n = new int[10]; int length = 1; n[0] = input[0]; for (int.. 더보기 이전 1 다음