More actions
imported>joojis No edit summary |
imported>jereneal20 No edit summary |
||
| Line 43: | Line 43: | ||
** http://poj.org/problemstatus?problem_id=2453&language=1&orderby=clen - joojis는 112B, kesarr는 114B에요 ㅎㅎ -[[김태진]] | ** http://poj.org/problemstatus?problem_id=2453&language=1&orderby=clen - joojis는 112B, kesarr는 114B에요 ㅎㅎ -[[김태진]] | ||
** ㅋㅋㅋㅋㅋ지기 싫으셨나 그새 줄이셨네 - [[서지혜]] | ** ㅋㅋㅋㅋㅋ지기 싫으셨나 그새 줄이셨네 - [[서지혜]] | ||
*** joojis이(가) Kesarr을(를) 다시 한번 이겼다! 105B vs 107B. http://joojis.jjme.net/aep.png | *** joojis이(가) Kesarr을(를) 다시 한번 이겼다! 105B vs 107B. http://joojis.jjme.net/aep.png | ||
Revision as of 21:41, 18 June 2011
Describe AnEasyProblem/정진경 here
Source Code
main(n,a,b){for(;a=b=scanf("%d",&n),n;printf("%d\n",n+a*b-b/2)){for(;a&~n;a*=2);for(;(b|a*b)&n;n+=b-a*b,b*=2);}}
// 164K 0MS C 112B
(define (mod a b)
(if (< a b)
a
(mod(- a b) b)
)
)
(define (quot a b)
(/ (- a (mod a b)) b)
)
(define (BitCount n)
(if (< n 1)
0
(+ (BitCount (quot n 2)) (mod n 2))
)
)
(define (SearchBitN n m)
(if (= n (BitCount m))
m
(SearchBitN n (+ m 1))
)
)
(define (AnEasyProblem n)
(SearchBitN (BitCount n) (+ n 1))
)
...
- 첫번째 제출에 상콤하게 Accept! 나름 열심히 줄여본다고 코드를 줄여봤지만. 역시 갈 길이 머네요... -정진경
- joojis이(가) Kesarr을(를) 이겼다!
- 앗~ 이건 뭔가요?ㅋㅋㅋ - 변형진
- http://poj.org/problemstatus?problem_id=2453&language=1&orderby=clen - joojis는 112B, kesarr는 114B에요 ㅎㅎ -김태진
- ㅋㅋㅋㅋㅋ지기 싫으셨나 그새 줄이셨네 - 서지혜
- joojis이(가) Kesarr을(를) 다시 한번 이겼다! 105B vs 107B. http://joojis.jjme.net/aep.png