Problem 2 - Find the sum of all the even-valued terms in the Fibonacci sequence which do not exceed four million.
링크 Each new term in the Fibonacci sequence is generated by adding the previous two terms. By starting with 1 and 2, the first 10 terms will be: 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, ... Find the sum of all the even-valued terms in the sequence which do not exceed four million. python a = 0 b = 1 res = 0 while a
더보기
TopCoder - SRM 몽땅 풀기 ( 노트 )
SRM 158 - Div2 Level2 (500 point) +=형식의 식이 주어지면 2~20진수 수체계 중 이 식을 만족하는 base를 찾아서 리턴하는 것이 문제였는데, 테스트케이스 0+0=0 에서 1,2,3, ... , 20 을 리턴해버렸음. 세상에 1진수라니 ㄷㄷㄷ.... SRM 159 - Div2 Level 2 (500 point) 배열(혹은 set)의 합집합, 교집합, 합집합-교집합 구하기 합집합: set_union(A.begin(), A.end(), B.begin(), B.end(), back_inserter(C)); 교집합: set_intersection(A.begin(), A.end(), B.begin(), B.end(), back_inserter(C)); 합집합-교집합: set_symme..
더보기