<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
	<channel>
		<title>지환태</title>
		<link>http://zfanta.com/</link>
		<description>지환태의 헛질 블로그</description>
		<language>ko</language>
		<pubDate>Mon, 01 Feb 2010 18:34:17 +0900</pubDate>
		<generator>Tistory 1.1 (http://www.tistory.com/)</generator>
		<image>
		<title>지환태</title>
		<url><![CDATA[http://cfs4.tistory.com/upload_control/download.blog?fhandle=YmxvZzE2MjM2MEBmczQudGlzdG9yeS5jb206L2F0dGFjaC8wLzEzMDAwMDAwMDAwMC5naWY%3D]]></url>
		<link>http://zfanta.com/</link>
		<description>지환태의 헛질 블로그</description>
		</image>
		<item>
			<title>bigint 수정</title>
			<link>http://zfanta.com/entry/bigint-%EC%88%98%EC%A0%95</link>
			<description>&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 2px; margin-right: 2px; width: 696px; margin-top: 2px; margin-bottom: 2px; height: 631px; &quot;&gt;
#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;  
#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;
#include &lt;memory.h&gt;
#include &lt;time.h&gt;

#pragma warning(disable:4996)

class bigint
{
private:
	char sign;		//+:0, -:1					
	unsigned *dats;	//가장 뒷자리가 dats[0]에 저장
	unsigned len;	//dats배열 길이

public:
	unsigned cona2u(char*);

	bigint();
	~bigint();
	bigint(const int);
	bigint(const unsigned);
	bigint(const char*);
	bigint(const bigint &amp;);

	unsigned resize(unsigned);	//길이조절
	unsigned resize();			//앞의 0 지우기
	bigint abs();				//절대값
	bigint negative(unsigned);	//1의보수	

	int cmp(bigint &amp;b);			//strcmp와 리턴값 같음

	bigint _or(bigint &amp;b);		//this에 저장
	bigint _and(bigint &amp;b);		//this에 저장
	bigint _xor(bigint &amp;b);		//this에 저장
	bigint shr(unsigned n);		//this에 (this&gt;&gt;n)을 저장
	bigint shl(unsigned n);		//this에 (this&lt;&lt;n)을 저장	

	bigint add(bigint &amp;b);		//(this+b)를 리턴
	bigint sub(bigint &amp;b);		//(this-b)를 리턴
	bigint mul(bigint &amp;b);		//(this*b)를 리턴
	bigint div(bigint &amp;b, int);	//(this/b)또는 (this%b)리턴

	std::string conbcd();		//10진

	bigint operator=(const int);
	bigint operator=(const bigint &amp;);
	bigint operator=(const char*);

	friend bigint operator-(bigint);

	friend bigint operator|(bigint, bigint);
	friend bigint operator&amp;(bigint, bigint);
	friend bigint operator^(bigint, bigint);
	friend bigint operator+(bigint, bigint);
	friend bigint operator-(bigint, bigint);
	friend bigint operator*(bigint, bigint);
	friend bigint operator/(bigint, bigint);
	friend bigint operator%(bigint, bigint);
	friend bigint operator&lt;&lt;(bigint, bigint);
	friend bigint operator&gt;&gt;(bigint, bigint);

	friend bool operator&lt;(bigint, bigint);
	friend bool operator&lt;=(bigint, bigint);
	friend bool operator&gt;(bigint, bigint);
	friend bool operator&gt;=(bigint, bigint);
	friend bool operator==(bigint, bigint);
	friend bool operator!=(bigint, bigint);

	bigint operator|=(bigint);
	bigint operator&amp;=(bigint);
	bigint operator^=(bigint);
	bigint operator+=(bigint);
	bigint operator-=(bigint);
	bigint operator*=(bigint);
	bigint operator/=(bigint);
	bigint operator%=(bigint);
	bigint operator&lt;&lt;=(bigint);
	bigint operator&gt;&gt;=(bigint);

	bigint operator++();
	bigint operator++(int dummy);
	bigint operator--();
	bigint operator--(int dummy);

	friend std::ostream&amp; operator &lt;&lt;( std::ostream&amp; os, bigint&amp; b );
	friend std::istream&amp; operator &gt;&gt;( std::istream&amp; is, bigint&amp; b );
};

unsigned bigint::cona2u(char *src)
{
	unsigned ten, sum, eos=strlen(src)-1;

	for(sum=0, ten=1; (int)eos&gt;=0 &amp;&amp; ten&lt;=100000000; ten*=10, eos--)
	{
		sum+=ten*(src[eos]-&#039;0&#039;);
		src[eos]=0;
	}
	return sum;
}

bigint::bigint()
{
	len=1;
	sign=0;
	dats=(unsigned*)calloc(1,sizeof(unsigned));
}

bigint::~bigint()
{
	free(dats);
}

bigint::bigint(const int src)
{
	len=1;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	if(src&lt;0)
	{
		sign=1;
		dats[0]=-src;
	}
	else
	{
		sign=0;
		dats[0]=src;
	}
}

bigint::bigint(const char *src)
{
	char *str=(char*)malloc(sizeof(char)*(strlen(src)+1));

	sign=0;
	strcpy(str, src);
	if(src[0]==&#039;-&#039;)
		strcpy(str,src+1), sign=1;
	if(src[0]==&#039;+&#039;)
		strcpy(str,src+1);

	len=(strlen(src)-1)/9 + 1;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	unsigned i;
	for(i=0; i&lt;len; i++)
	{
		dats[i]=cona2u(str);
	}
	free(str);
	shl(len*32);

	unsigned j, lmt=len/2;
	for(i=(len/2)*32; i; i--)
	{
		shr(1);
		for(j=len-1; j&gt;=lmt; j--)
		{
			if(dats[j]&gt;=2147483648)
				dats[j]-=1647483648;
		}
	}
}

bigint::bigint(const bigint &amp;src)
{
	len=src.len;
	sign=src.sign;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	memcpy(dats, src.dats, sizeof(unsigned)*len);
}

unsigned bigint::resize(unsigned len_new)
{
	if(len==len_new)
		return len;
	unsigned *new_p=(unsigned*)malloc(sizeof(unsigned)*len_new);		//
	memcpy(new_p, dats, sizeof(unsigned)*((len&lt;len_new)?len:len_new));	//이부분에 realloc(dats, sizeof(unsigned)*len_new)쓰면 왜 값이 바뀌나요
	free(dats);															//
	dats=new_p;															//

	if(len &lt; len_new)
		memset(dats+len, 0, sizeof(unsigned)*(len_new-len));
	len=len_new;
	return len;
}

unsigned bigint::resize()
{
	unsigned i;
	for(i=len-1; dats[i]==0; i--);
	i++;
	if(i)
		resize(i);
	else
		resize(1);
	return len;
}

bigint bigint::abs()
{
	bigint toreturn(*this);
	toreturn.sign=0;
	return toreturn;
}

//1의 보수
bigint bigint::negative(unsigned len_new)
{
	bigint toreturn(*this);
	toreturn.resize(len_new);
	for(unsigned i=0; i&lt;len_new; i++)
		toreturn.dats[i]=~toreturn.dats[i];
	return toreturn;
}

int bigint::cmp(bigint &amp;b)
{
	if(len==1 &amp;&amp; b.len==1 &amp;&amp; dats[0]==0 &amp;&amp; b.dats[0]==0)
		return 0;
	if(sign==1 &amp;&amp; b.sign==0)
		return -1;
	if(sign==0 &amp;&amp; b.sign==1)
		return 1;

	int left=1, right=-1;	
	if(sign==1 &amp;&amp; b.sign==1)
		left=-1, right=1;

	if(len&gt;b.len)
		return left;
	if(len&lt;b.len)
		return right;

	for(int i=len-1; i&gt;=0; i--)
	{
		if(dats[i]&gt;b.dats[i])
			return left;
		if(dats[i]&lt;b.dats[i])
			return right;
	}
	return 0;
}

bigint bigint::_or(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]|=b.dats[i];
	return *this;
}

bigint bigint::_and(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]&amp;=b.dats[i];
	return *this;
}

bigint bigint::_xor(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]^=b.dats[i];
	return *this;
}

bigint bigint::shr(unsigned n)
{
	unsigned move=n&gt;&gt;5, cut=n&amp;31, i, j, tmp;
	dats[0]=dats[move]&gt;&gt;cut;
	for(i=1; i&lt;len-move; i++)
	{
		for(j=0, tmp=dats[i+move]; j&lt;32-cut; j++)	//dats[i+1]=dats[i+1]|(dats[i+move]&lt;&lt;(32-cut));
			tmp&lt;&lt;=1;								//
		dats[i-1]|=tmp;
		dats[i]=dats[i+move]&gt;&gt;cut;  
	}


	resize(len-move);//옮겨진 부분 삭제
	resize();
	return *this;
}

bigint bigint::shl(unsigned n)
{
	unsigned move=n&gt;&gt;5, cut=n&amp;31, i, j, tmp;

	resize(len+move+1);
	dats[len-1]=dats[len-move-1]&lt;&lt;cut;
	for(i=len-2; (int)i&gt;=(int)move; i--)
	{
		for(j=0, tmp=dats[i-move]; j&lt;32-cut; j++)	//dats[i+1]=dats[i+1]|(dats[i-move]&gt;&gt;(32-cut));
			tmp&gt;&gt;=1;								//
		dats[i+1]=dats[i+1]|tmp;					//
		dats[i]=dats[i-move]&lt;&lt;cut;
	}
	memset(dats, 0, sizeof(unsigned)*move);//뒤에 옮겨진 부분 0으로

	resize();
	return *this;
}

bigint bigint::add(bigint &amp;b)
{
	bigint toreturn=*this;
	long long carry=0;
	unsigned i;
	toreturn.resize( ((b.len&gt;toreturn.len)?b.len:toreturn.len) + 1 );

	for(i=0; i&lt;b.len; i++)
	{
		carry = (long long)toreturn.dats[i] + (long long)b.dats[i] + carry;
		toreturn.dats[i]=carry&amp;(((long long)1&lt;&lt;32)-1);
		carry&gt;&gt;=32;
	}

	for(; carry; i++)
	{
		carry=(long long)toreturn.dats[i] + carry;
		toreturn.dats[i]=carry&amp;(((long long)1&lt;&lt;32)-1);
		carry&gt;&gt;=32;
	}

	toreturn.resize();

	return toreturn;
}

//1의 보수 사용
bigint bigint::sub(bigint &amp;b)
{
	bigint toreturn(*this);
	bigint subtrahend(b);	//감수

	unsigned len_new=((toreturn.len&gt;b.len)?toreturn.len:b.len);
	subtrahend=subtrahend.negative(len_new);

	toreturn=toreturn.add(subtrahend);
	if(toreturn.len &gt; len_new)//자리올림수있으면
	{
		toreturn.resize(len_new);
		toreturn=toreturn.add((bigint)1);
	}
	else//자리올림수 없으면
	{
		toreturn=toreturn.negative(len_new);
		toreturn.sign=1;
	}
	return toreturn;
}

bigint bigint::mul(bigint &amp;b)
{
	bigint result, tmp;
	unsigned i, j;
	unsigned long long carry;
	for(i=0; i&lt;b.len; i++)
	{
		tmp.resize(len+1+i);
		for(carry=j=0; j&lt;len; j++)
		{
			carry=(long long)dats[j]*(long long)b.dats[i]+carry;
			tmp.dats[j+i]=(unsigned)carry&amp;(((long long)1&lt;&lt;32)-1);
			carry&gt;&gt;=32;
		}
		tmp.dats[j+i]=(unsigned)carry;
		result=result.add(tmp);
		memset(tmp.dats, 0, sizeof(unsigned)*tmp.len);
	}
	result.resize();
	return result;	
}

bigint bigint::div(bigint &amp;b, int ask_mod=0)
{
	bigint r=abs(), q=0, divisor=b.abs(), one=1;
	unsigned i;

	for(i=0;divisor.cmp(r)&lt;=0;divisor.shl(1),i++);
	i--;
	if((int)i&gt;=0)
	{
		one.shl(i);
		divisor.shr(1);

		while(b.cmp(r)&lt;=0)//b&lt;=r
		{
			for(;divisor.cmp(r)&gt;0;divisor.shr(1),one.shr(1));
			q._or(one);
			r=r.sub(divisor);
		}
	}

	if(ask_mod)
		return r;
	return q;
}

std::string bigint::conbcd()
{
	unsigned *bcd, len_new, head, i, j;
	char  str_tmp[10];
	std::string result;

	len_new=10704*len/10000+1+len;

	bcd=(unsigned*)calloc(len_new, sizeof(unsigned));
	memcpy(bcd, dats, sizeof(unsigned)*len);

	for(head=len, i=0; i&lt;32*len; i++)
	{
		for(j=head; j&gt;=len; j--)
		{
			if(bcd[j]&gt;=500000000)
				bcd[j]+=1647483648;
		}
		if(bcd[head]&gt;&gt;31)
			head++;
		bcd[head]&lt;&lt;=1;
		for(j=head-1; (int)j&gt;=0; j--)
		{
			bcd[j+1]|=(bcd[j]&gt;&gt;31);
			bcd[j]&lt;&lt;=1;
		}		
	}

	for(i=len_new-1; bcd[i]==0; i--);

	if((int)i&lt;0)
	{
		result=&quot;0&quot;;
		return result;
	}

	sprintf(str_tmp, &quot;%u&quot;, bcd[i]);
	result.insert(result.size(), str_tmp);

	for(--i; (int)i&gt;=len; i--)
	{
		sprintf(str_tmp, &quot;%09u&quot;, bcd[i]);
		result.insert(result.size(), str_tmp);
	}

	free(bcd);
	return result;
}

bigint bigint::operator=(const int src)
{
	resize(1);
	sign=0;	
	dats[0]=src;
	if(src&lt;0)
		sign=1, dats[0]*=-1;
	return *this;
}

bigint bigint::operator=(const bigint &amp;src)
{
	resize(src.len);
	sign=src.sign;
	memcpy(dats, src.dats, sizeof(unsigned)*len);
	return *this;
}

bigint bigint::operator=(const char *src)
{
	char *str=(char*)malloc(sizeof(char)*(strlen(src)+1));

	sign=0;
	strcpy(str, src);
	if(src[0]==&#039;-&#039;)
		strcpy(str,src+1), sign=1;
	if(src[0]==&#039;+&#039;)
		strcpy(str,src+1);

	resize((strlen(src)-1)/9 + 1);
	unsigned i;
	for(i=0; i&lt;len; i++)
	{
		dats[i]=cona2u(str);
	}
	free(str);
	shl(len*32);

	unsigned j, lmt=len/2;
	for(i=(len/2)*32; i; i--)
	{
		shr(1);
		for(j=len-1; j&gt;=lmt; j--)
		{
			if(dats[j]&gt;=2147483648)
				dats[j]-=1647483648;
		}
	}

	return *this;
}

bigint operator-(bigint a)
{
	a.sign^=1;
	return a;
}

bigint operator|(bigint a, bigint b)
{
	return a._or(b);
}

bigint operator&amp;(bigint a, bigint b)
{
	return a._and(b);
}

bigint operator^(bigint a, bigint b)
{
	return a._xor(b);
}

bigint operator+(bigint a, bigint b)
{
	if(a.sign==b.sign)
		return a.add(b);
	if(a.sign==0 &amp;&amp; b.sign==1)
		return a.sub(b);
	//a.sign==1 &amp;&amp; b.sign==0
	return b.sub(a);
}

bigint operator-(bigint a, bigint b)
{
	if(a.sign==1 &amp;&amp; b.sign==1)
	{
		b.sign=0;
		if((a.abs()).cmp(b.abs())==1)
			b.sign=1;
		b=b.sub(a);
		return b;
	}
	if(a.sign==0 &amp;&amp; b.sign==0)
		return a.sub(b);
	if(a.sign==0 &amp;&amp; b.sign==1)
		return a.add(b);
	//a.sign==1 &amp;&amp; b.sign==0
	a=a.add(b);
	a.sign=1;
	return a;
}

bigint operator*(bigint a, bigint b)
{
	bigint toreturn=a.mul(b);
	toreturn.sign=a.sign^b.sign;
	return toreturn;
}

bigint operator/(bigint a, bigint b)
{
	bigint toreturn=a.abs().div(b.abs());
	toreturn.sign=a.sign^b.sign;
	return toreturn;
}

bigint operator%(bigint a, bigint b)
{
	bigint toreturn=a.abs().div(b.abs(),1);
	toreturn.sign=a.sign;
	return toreturn;
}

bigint operator&lt;&lt;(bigint a, bigint b)
{
	bigint tmp(2147483647);
	while(b.len&gt;1)
	{
		a.shl(2147483647);
		b=b.sub(tmp);
	}
	a.shl(b.dats[0]);
	return a;
}

bigint operator&gt;&gt;(bigint a, bigint b)
{
	bigint tmp(2147483647);
	while(b.len&gt;1)
	{
		a.shr(2147483647);
		b=b.sub(tmp);
	}
	a.shr(b.dats[0]);
	return a;
}

bool operator&lt;(bigint a, bigint b)
{
	if(a.cmp(b)&lt;0)
		return true;
	return false;
}

bool operator&lt;=(bigint a, bigint b)
{
	if(a.cmp(b)&lt;=0)
		return true;
	return false;
}

bool operator&gt;(bigint a, bigint b)
{
	if(a.cmp(b)&gt;0)
		return true;
	return false;
}

bool operator&gt;=(bigint a, bigint b)
{
	if(a.cmp(b)&gt;=0)
		return true;
	return false;
}

bool operator==(bigint a, bigint b)
{
	if(a.cmp(b)==0)
		return true;
	return false;
}

bool operator!=(bigint a, bigint b)
{
	if(a.cmp(b)==0)
		return false;
	return true;
}

bigint bigint::operator|=(bigint b)
{
	*this=*this|b;
	return *this;
}

bigint bigint::operator&amp;=(bigint b)
{
	*this=*this&amp;b;
	return *this;
}
bigint bigint::operator^=(bigint b)
{
	*this=*this^b;
	return *this;
}

bigint bigint::operator+=(bigint b)
{
	*this=*this+b;
	return *this;
}

bigint bigint::operator-=(bigint b)
{
	*this=*this-b;
	return *this;
}

bigint bigint::operator*=(bigint b)
{
	*this=*this*b;
	return *this;
}

bigint bigint::operator/=(bigint b)
{
	*this=*this/b;
	return *this;
}

bigint bigint::operator%=(bigint b)
{
	*this=*this%b;
	return *this;
}

bigint bigint::operator&lt;&lt;=(bigint b)
{
	*this=*this&lt;&lt;b;
	return *this;
}

bigint bigint::operator&gt;&gt;=(bigint b)
{
	*this=*this&gt;&gt;b;
	return *this;
}

bigint bigint::operator++()
{
	*this+=1;
	return *this;
}

bigint bigint::operator++(int dummy)
{
	bigint old(*this);
	*this+=1;
	return old;
}

bigint bigint::operator--()
{
	*this-=1;
	return *this;
}

bigint bigint::operator--(int dummy)
{
	bigint old(*this);
	*this-=1;
	return old;
}

std::ostream&amp; operator&lt;&lt;(std::ostream&amp; os, bigint&amp; b)
{
	os&lt;&lt;((b.sign)?&quot;-&quot;:&quot;&quot;)&lt;&lt;b.conbcd();

	return os;
}

std::istream&amp; operator&gt;&gt;(std::istream&amp; is, bigint&amp; b)
{
	std::string numstr;
	is&gt;&gt;numstr;
	b=numstr.c_str();

	return is;
}

bigint fac(bigint n)  
{
	bigint result=1;
	for(; n&gt;0; n--)
		result*=n;

	return result;
}

int main()
{
	clock_t start, end;
	std::ofstream fout;
	fout.open(&quot;result.txt&quot;);

	bigint n=1;

	std::cout&lt;&lt;&quot;&gt;&quot;;
	std::cin&gt;&gt;n;
	while(n&gt;0)
	{
		start=clock();

		fout&lt;&lt;n&lt;&lt;&quot;!:\n&quot;;
		fout&lt;&lt;fac(n)&lt;&lt;&#039;\n&#039;;

		end=clock();
		fout&lt;&lt;(double)(end-start) / CLOCKS_PER_SEC&lt;&lt;&quot;sec\n&quot;;

		std::cout&lt;&lt;&quot;&gt;&quot;;
		std::cin&gt;&gt;n;
	}

	return 0;
}
&lt;/textarea&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
나눗셈에 오류가 있었습니다.&lt;/div&gt;
&lt;div&gt;bcd도 고쳤고&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-469-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-469-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-469-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>bigint</category>
			<category>bigint</category>
			<author>　환타</author>
			<guid>http://zfanta.com/469</guid>
			<comments>http://zfanta.com/entry/bigint-%EC%88%98%EC%A0%95#entry469comment</comments>
			<pubDate>Mon, 01 Feb 2010 18:34:14 +0900</pubDate>
		</item>
		<item>
			<title>카프리카수 프로그래밍</title>
			<link>http://zfanta.com/entry/%EC%B9%B4%ED%94%84%EB%A6%AC%EC%B9%B4%EC%88%98-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D</link>
			<description>네이버캐스트에 있는 &lt;a href=&quot;http://navercast.naver.com/science/math/1623&quot; target=&quot;_blank&quot; title=&quot;[http://navercast.naver.com/science/math/1623]로 이동합니다.&quot;&gt;카프리카수&lt;/a&gt;보고 그대로 만들었습니다.&lt;div&gt;
&lt;br /&gt;&lt;div&gt;
&amp;nbsp;&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 2px; margin-right: 2px; width: 706px; margin-top: 2px; margin-bottom: 2px; height: 853px; &quot;&gt;
#include &lt;stdio.h&gt;
#include &lt;math.h&gt;

int is_square(int n)
{
	int a, b, count=1;
	
	switch(n%10)
	{
	case 2:
	case 3:
	case 7:
	case 8:
		return 0;
		break;
	}
	
	for(a=2, b=0; (n&amp;1)==0; n&gt;&gt;=1, b++);
	count*=(b+1);
	for(a=3; n&gt;1; a+=2)
	{
		for(b=0; n%a==0; n/=a, b++);
		count*=(b+1);
	}
	
	return (count&amp;1);
}

int tens(int n)
{
	int i, result=1;
	for(i=1; i&lt;=n; i++)
		result*=10;
	return result;
}

int main()
{
	int n, x1, x2, y, lmt;
	scanf(&quot;%d&quot;, &amp;n);

	lmt=(25*tens(n-2))/(tens(n/2)-1);
	for(y=tens(n/2 - 1); y&lt;=lmt; y++)
	{
		if( (is_square( 25*tens(n-2) - (tens(n/2)-1)*y )) )
		{
			x1=5*tens(n/2 - 1) - y + sqrt( (int)(25*tens(n-2) - (tens(n/2)-1)*y) );
			x2=5*tens(n/2 - 1) - y - sqrt( (int)(25*tens(n-2) - (tens(n/2)-1)*y) );

			if(x1&gt;=tens(n/2 - 1))printf(&quot;%d%d\n&quot;, x1, y);
			if(x2&gt;=tens(n/2 - 1))printf(&quot;%d%d\n&quot;, x2, y);
		}
	}
}
&lt;/textarea&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal; white-space: pre-wrap;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal; white-space: pre-wrap;&quot;&gt;10자리 이상 구하려면 bigint클래스 쓰세요.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-468-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-468-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-468-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=5165460&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>C/C++</category>
			<category>수학</category>
			<category>카프리카수</category>
			<category>프로그램</category>
			<author>　환타</author>
			<guid>http://zfanta.com/468</guid>
			<comments>http://zfanta.com/entry/%EC%B9%B4%ED%94%84%EB%A6%AC%EC%B9%B4%EC%88%98-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D#entry468comment</comments>
			<pubDate>Sun, 20 Dec 2009 17:54:04 +0900</pubDate>
		</item>
		<item>
			<title>c++ bigint class완성</title>
			<link>http://zfanta.com/entry/c-bigint-class%EC%99%84%EC%84%B1</link>
			<description>&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;적분형님따라 만든 bigint&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 714px; margin-top: 1px; margin-bottom: 1px; height: 12101px; &quot;&gt;
#include &lt;iostream&gt;
#include &lt;fstream&gt;
#include &lt;string&gt;  
#include &lt;stdlib.h&gt;
#include &lt;stdio.h&gt;
#include &lt;memory.h&gt;
#include &lt;time.h&gt;

#pragma warning(disable:4996)

class bigint
{
private:
	char sign;		//+:0, -:1					
	unsigned *dats;	//가장 뒷자리가 dats[0]에 저장
	unsigned len;	//dats배열 길이

public:
	unsigned cona2u(char*);

	bigint();
	~bigint();
	bigint(const int);
	bigint(const unsigned);
	bigint(const char*);
	bigint(const bigint &amp;);

	unsigned resize(unsigned);	//길이조절
	unsigned resize();			//앞의 0 지우기
	bigint abs();				//절대값
	bigint negative(unsigned);	//1의보수	

	int cmp(bigint &amp;b);			//strcmp와 리턴값 같음

	bigint _or(bigint &amp;b);		//this에 저장
	bigint _and(bigint &amp;b);		//this에 저장
	bigint _xor(bigint &amp;b);		//this에 저장
	bigint shr(unsigned n);		//this에 (this&gt;&gt;n)을 저장
	bigint shl(unsigned n);		//this에 (this&lt;&lt;n)을 저장	

	bigint add(bigint &amp;b);		//(this+b)를 리턴
	bigint sub(bigint &amp;b);		//(this-b)를 리턴
	bigint mul(bigint &amp;b);		//(this*b)를 리턴
	bigint div(bigint &amp;b, int);	//(this/b)또는 (this%b)리턴

	std::string conbcd();		//10진

	bigint operator=(const int);
	bigint operator=(const bigint &amp;);
	bigint operator=(const char*);

	friend bigint operator-(bigint);

	friend bigint operator|(bigint, bigint);
	friend bigint operator&amp;(bigint, bigint);
	friend bigint operator^(bigint, bigint);
	friend bigint operator+(bigint, bigint);
	friend bigint operator-(bigint, bigint);
	friend bigint operator*(bigint, bigint);
	friend bigint operator/(bigint, bigint);
	friend bigint operator%(bigint, bigint);
	friend bigint operator&lt;&lt;(bigint, bigint);
	friend bigint operator&gt;&gt;(bigint, bigint);

	friend bool operator&lt;(bigint, bigint);
	friend bool operator&lt;=(bigint, bigint);
	friend bool operator&gt;(bigint, bigint);
	friend bool operator&gt;=(bigint, bigint);
	friend bool operator==(bigint, bigint);
	friend bool operator!=(bigint, bigint);

	bigint operator|=(bigint);
	bigint operator&amp;=(bigint);
	bigint operator^=(bigint);
	bigint operator+=(bigint);
	bigint operator-=(bigint);
	bigint operator*=(bigint);
	bigint operator/=(bigint);
	bigint operator%=(bigint);
	bigint operator&lt;&lt;=(bigint);
	bigint operator&gt;&gt;=(bigint);

	bigint operator++();
	bigint operator++(int dummy);
	bigint operator--();
	bigint operator--(int dummy);

	friend std::ostream&amp; operator &lt;&lt;( std::ostream&amp; os, bigint&amp; b );
	friend std::istream&amp; operator &gt;&gt;( std::istream&amp; is, bigint&amp; b );
};

unsigned bigint::cona2u(char *src)
{
	unsigned ten, sum, eos=strlen(src)-1;

	for(sum=0, ten=1; (int)eos&gt;=0 &amp;&amp; ten&lt;=100000000; ten*=10, eos--)
	{
		sum+=ten*(src[eos]-&#039;0&#039;);
		src[eos]=0;
	}
	return sum;
}

bigint::bigint()
{
	len=1;
	sign=0;
	dats=(unsigned*)calloc(1,sizeof(unsigned));
}

bigint::~bigint()
{
	free(dats);
}

bigint::bigint(const int src)
{
	len=1;
	sign=0;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	dats[0]=src;
}

bigint::bigint(const char *src)
{
	char *str=(char*)malloc(sizeof(char)*(strlen(src)+1));

	sign=0;
	strcpy(str, src);
	if(src[0]==&#039;-&#039;)
		strcpy(str,src+1), sign=1;
	if(src[0]==&#039;+&#039;)
		strcpy(str,src+1);

	len=(strlen(src)-1)/9 + 1;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	unsigned i;
	for(i=0; i&lt;len; i++)
	{
		dats[i]=cona2u(str);
	}
	free(str);
	shl(len*32);

	unsigned j, lmt=len/2;
	for(i=(len/2)*32; i; i--)
	{
		shr(1);
		for(j=len-1; j&gt;=lmt; j--)
		{
			if(dats[j]&gt;=2147483648)
				dats[j]-=1647483648;
		}
	}
}

bigint::bigint(const bigint &amp;src)
{
	len=src.len;
	sign=src.sign;
	dats=(unsigned*)malloc(sizeof(unsigned)*len);
	memcpy(dats, src.dats, sizeof(unsigned)*len);
}

unsigned bigint::resize(unsigned len_new)
{
	if(len==len_new)
		return len;
	unsigned *new_p=(unsigned*)malloc(sizeof(unsigned)*len_new);		//
	memcpy(new_p, dats, sizeof(unsigned)*((len&lt;len_new)?len:len_new));	//이부분에 realloc(dats, sizeof(unsigned)*len_new)쓰면 왜 값이 바뀌나요
	free(dats);															//
	dats=new_p;															//

	if(len &lt; len_new)
		memset(dats+len, 0, sizeof(unsigned)*(len_new-len));
	len=len_new;
	return len;
}

unsigned bigint::resize()
{
	unsigned i;
	for(i=len-1; dats[i]==0; i--);
	i++;
	if(i)
		resize(i);
	else
		resize(1);
	return len;
}

bigint bigint::abs()
{
	bigint toreturn(*this);
	toreturn.sign=0;
	return toreturn;
}

//1의 보수
bigint bigint::negative(unsigned len_new)
{
	bigint toreturn(*this);
	toreturn.resize(len_new);
	for(unsigned i=0; i&lt;len_new; i++)
		toreturn.dats[i]=~toreturn.dats[i];
	return toreturn;
}

int bigint::cmp(bigint &amp;b)
{
	if(len==1 &amp;&amp; b.len==1 &amp;&amp; dats[0]==0 &amp;&amp; b.dats[0]==0)
		return 0;
	if(sign==1 &amp;&amp; b.sign==0)
		return -1;
	if(sign==0 &amp;&amp; b.sign==1)
		return 1;

	int left=1, right=-1;	
	if(sign==1 &amp;&amp; b.sign==1)
		left=-1, right=1;

	if(len&gt;b.len)
		return left;
	if(len&lt;b.len)
		return right;

	for(int i=len-1; i&gt;=0; i--)
	{
		if(dats[i]&gt;b.dats[i])
			return left;
		if(dats[i]&lt;b.dats[i])
			return right;
	}
	return 0;
}

bigint bigint::_or(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]|=b.dats[i];
	return *this;
}

bigint bigint::_and(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]&amp;=b.dats[i];
	return *this;
}

bigint bigint::_xor(bigint &amp;b)
{
	if(len&lt;b.len)
		resize(b.len);
	unsigned i;
	for(i=0; i&lt;b.len; i++)
		dats[i]^=b.dats[i];
	return *this;
}

bigint bigint::shr(unsigned n)
{
	unsigned move=n&gt;&gt;5, cut=n&amp;31, i, j, tmp;
	dats[0]=dats[move]&gt;&gt;cut;
	for(i=1; i&lt;len-move; i++)
	{
		for(j=0, tmp=dats[i+move]; j&lt;32-cut; j++)	//dats[i+1]=dats[i+1]|(dats[i+move]&lt;&lt;(32-cut));
			tmp&lt;&lt;=1;								//
		dats[i-1]|=tmp;
		dats[i]=dats[i+move]&gt;&gt;cut;  
	}


	resize(len-move);//옮겨진 부분 삭제
	resize();
	return *this;
}

bigint bigint::shl(unsigned n)
{
	unsigned move=n&gt;&gt;5, cut=n&amp;31, i, j, tmp;

	resize(len+move+1);
	dats[len-1]=dats[len-move-1]&lt;&lt;cut;
	for(i=len-2; (int)i&gt;=(int)move; i--)
	{
		for(j=0, tmp=dats[i-move]; j&lt;32-cut; j++)	//dats[i+1]=dats[i+1]|(dats[i-move]&gt;&gt;(32-cut));
			tmp&gt;&gt;=1;								//
		dats[i+1]=dats[i+1]|tmp;					//
		dats[i]=dats[i-move]&lt;&lt;cut;
	}
	memset(dats, 0, sizeof(unsigned)*move);//뒤에 옮겨진 부분 0으로

	resize();
	return *this;
}

bigint bigint::add(bigint &amp;b)
{
	bigint toreturn=*this;
	long long carry=0;
	unsigned i;
	toreturn.resize( ((b.len&gt;toreturn.len)?b.len:toreturn.len) + 1 );

	for(i=0; i&lt;b.len; i++)
	{
		carry = (long long)toreturn.dats[i] + (long long)b.dats[i] + carry;
		toreturn.dats[i]=carry&amp;(((long long)1&lt;&lt;32)-1);
		carry&gt;&gt;=32;
	}

	for(; carry; i++)
	{
		carry=(long long)toreturn.dats[i] + carry;
		toreturn.dats[i]=carry&amp;(((long long)1&lt;&lt;32)-1);
		carry&gt;&gt;=32;
	}

	toreturn.resize();

	return toreturn;
}

//1의 보수 사용
bigint bigint::sub(bigint &amp;b)
{
	bigint toreturn(*this);
	bigint subtrahend(b);	//감수

	unsigned len_new=((toreturn.len&gt;b.len)?toreturn.len:b.len);
	subtrahend=subtrahend.negative(len_new);

	toreturn=toreturn.add(subtrahend);
	if(toreturn.len &gt; len_new)//자리올림수있으면
	{
		toreturn.resize(len_new);
		toreturn=toreturn.add((bigint)1);
	}
	else//자리올림수 없으면
	{
		toreturn=toreturn.negative(len_new);
		toreturn.sign=1;
	}
	return toreturn;
}

bigint bigint::mul(bigint &amp;b)
{
	bigint result, tmp;
	unsigned i, j;
	unsigned long long carry;
	for(i=0; i&lt;b.len; i++)
	{
		tmp.resize(len+1+i);
		for(carry=j=0; j&lt;len; j++)
		{
			carry=(long long)dats[j]*(long long)b.dats[i]+carry;
			tmp.dats[j+i]=(unsigned)carry&amp;(((long long)1&lt;&lt;32)-1);
			carry&gt;&gt;=32;
		}
		tmp.dats[j+i]=(unsigned)carry;
		result=result.add(tmp);
		memset(tmp.dats, 0, sizeof(unsigned)*tmp.len);
	}
	result.resize();
	return result;	
}

bigint bigint::div(bigint &amp;b, int ask_mod=0)
{
	bigint r=abs(), q=0, divisor=b.abs(), one=1;
	unsigned i;

	for(i=0;divisor.cmp(r)&lt;=0;divisor.shl(1),i++);
	i--;
	if((int)i&gt;0)
	{
		one.shl(i);
		divisor.shr(1);

		while(b.cmp(r)&lt;=0)//b&lt;=r
		{
			for(;divisor.cmp(r)&gt;0;divisor.shr(1),one.shr(1));
			q._or(one);
			r=r.sub(divisor);
		}
	}

	if(ask_mod)
		return r;
	return q;
}

std::string bigint::conbcd()
{
	unsigned *bcd, len_new, head, i, j;
	char  str_tmp[10];
	std::string result;

	len_new=10704*len/10000+1+len;

	bcd=(unsigned*)calloc(len_new, sizeof(unsigned));
	memcpy(bcd, dats, sizeof(unsigned)*len);

	for(head=len, i=0; i&lt;32*len; i++)
	{
		for(j=head; j&gt;=len; j--)
		{
			if(bcd[j]&gt;=500000000)
				bcd[j]+=1647483648;
		}
		if(bcd[head]&gt;&gt;31)
			head++;
		bcd[head]&lt;&lt;=1;
		for(j=head-1; (int)j&gt;=0; j--)
		{
			bcd[j+1]|=(bcd[j]&gt;&gt;31);
			bcd[j]&lt;&lt;=1;
		}		
	}

	for(i=len_new-1; bcd[i]==0; i--);

	sprintf(str_tmp, &quot;%u&quot;, bcd[i]);
	result.insert(result.size(), str_tmp);

	for(--i; i&gt;=len; i--)
	{
		sprintf(str_tmp, &quot;%09u&quot;, bcd[i]);
		result.insert(result.size(), str_tmp);
	}

	free(bcd);
	return result;
}

bigint bigint::operator=(const int src)
{
	resize(1);
	sign=0;	
	dats[0]=src;
	if(src&lt;0)
		sign=1, dats[0]*=-1;
	return *this;
}

bigint bigint::operator=(const bigint &amp;src)
{
	resize(src.len);
	sign=src.sign;
	memcpy(dats, src.dats, sizeof(unsigned)*len);
	return *this;
}

bigint bigint::operator=(const char *src)
{
	char *str=(char*)malloc(sizeof(char)*(strlen(src)+1));

	sign=0;
	strcpy(str, src);
	if(src[0]==&#039;-&#039;)
		strcpy(str,src+1), sign=1;
	if(src[0]==&#039;+&#039;)
		strcpy(str,src+1);

	resize((strlen(src)-1)/9 + 1);
	unsigned i;
	for(i=0; i&lt;len; i++)
	{
		dats[i]=cona2u(str);
	}
	free(str);
	shl(len*32);

	unsigned j, lmt=len/2;
	for(i=(len/2)*32; i; i--)
	{
		shr(1);
		for(j=len-1; j&gt;=lmt; j--)
		{
			if(dats[j]&gt;=2147483648)
				dats[j]-=1647483648;
		}
	}

	return *this;
}

bigint operator-(bigint a)
{
	a.sign^=1;
	return a;
}

bigint operator|(bigint a, bigint b)
{
	return a._or(b);
}

bigint operator&amp;(bigint a, bigint b)
{
	return a._and(b);
}

bigint operator^(bigint a, bigint b)
{
	return a._xor(b);
}

bigint operator+(bigint a, bigint b)
{
	if(a.sign==b.sign)
		return a.add(b);
	if(a.sign==0 &amp;&amp; b.sign==1)
		return a.sub(b);
	//a.sign==1 &amp;&amp; b.sign==0
	return b.sub(a);
}

bigint operator-(bigint a, bigint b)
{
	if(a.sign==1 &amp;&amp; b.sign==1)
	{
		b.sign=0;
		if((a.abs()).cmp(b.abs())==1)
			b.sign=1;
		b=b.sub(a);
		return b;
	}
	if(a.sign==0 &amp;&amp; b.sign==0)
		return a.sub(b);
	if(a.sign==0 &amp;&amp; b.sign==1)
		return a.add(b);
	//a.sign==1 &amp;&amp; b.sign==0
	a=a.add(b);
	a.sign=1;
	return a;
}

bigint operator*(bigint a, bigint b)
{
	bigint toreturn=a.mul(b);
	toreturn.sign=a.sign^b.sign;
	return toreturn;
}

bigint operator/(bigint a, bigint b)
{
	bigint toreturn=a.div(b);
	toreturn.sign=a.sign^b.sign;
	return toreturn;
}

bigint operator%(bigint a, bigint b)
{
	bigint toreturn=a.div(b,1);
	toreturn.sign=a.sign;
	return toreturn;
}

bigint operator&lt;&lt;(bigint a, bigint b)
{
	bigint tmp(2147483647);
	while(b.len&gt;1)
	{
		a.shl(2147483647);
		b=b.sub(tmp);
	}
	a.shl(b.dats[0]);
	return a;
}

bigint operator&gt;&gt;(bigint a, bigint b)
{
	bigint tmp(2147483647);
	while(b.len&gt;1)
	{
		a.shr(2147483647);
		b=b.sub(tmp);
	}
	a.shr(b.dats[0]);
	return a;
}

bool operator&lt;(bigint a, bigint b)
{
	if(a.cmp(b)&lt;0)
		return true;
	return false;
}

bool operator&lt;=(bigint a, bigint b)
{
	if(a.cmp(b)&lt;=0)
		return true;
	return false;
}

bool operator&gt;(bigint a, bigint b)
{
	if(a.cmp(b)&gt;0)
		return true;
	return false;
}

bool operator&gt;=(bigint a, bigint b)
{
	if(a.cmp(b)&gt;=0)
		return true;
	return false;
}

bool operator==(bigint a, bigint b)
{
	if(a.cmp(b)==0)
		return true;
	return false;
}

bool operator!=(bigint a, bigint b)
{
	if(a.cmp(b)==0)
		return false;
	return true;
}

bigint bigint::operator|=(bigint b)
{
	*this=*this|b;
	return *this;
}

bigint bigint::operator&amp;=(bigint b)
{
	*this=*this&amp;b;
	return *this;
}
bigint bigint::operator^=(bigint b)
{
	*this=*this^b;
	return *this;
}

bigint bigint::operator+=(bigint b)
{
	*this=*this+b;
	return *this;
}

bigint bigint::operator-=(bigint b)
{
	*this=*this-b;
	return *this;
}

bigint bigint::operator*=(bigint b)
{
	*this=*this*b;
	return *this;
}

bigint bigint::operator/=(bigint b)
{
	*this=*this/b;
	return *this;
}

bigint bigint::operator%=(bigint b)
{
	*this=*this%b;
	return *this;
}

bigint bigint::operator&lt;&lt;=(bigint b)
{
	*this=*this&lt;&lt;b;
	return *this;
}

bigint bigint::operator&gt;&gt;=(bigint b)
{
	*this=*this&gt;&gt;b;
	return *this;
}

bigint bigint::operator++()
{
	*this+=1;
	return *this;
}

bigint bigint::operator++(int dummy)
{
	bigint old(*this);
	*this+=1;
	return old;
}

bigint bigint::operator--()
{
	*this-=1;
	return *this;
}

bigint bigint::operator--(int dummy)
{
	bigint old(*this);
	*this-=1;
	return old;
}

std::ostream&amp; operator&lt;&lt;(std::ostream&amp; os, bigint&amp; b)
{
	os&lt;&lt;((b.sign)?&quot;-&quot;:&quot;&quot;)&lt;&lt;b.conbcd();

	return os;
}

std::istream&amp; operator&gt;&gt;(std::istream&amp; is, bigint&amp; b)
{
	std::string numstr;
	is&gt;&gt;numstr;
	b=numstr.c_str();

	return is;
}

bigint fac(bigint n)  
{  
	bigint result=1;
	for(; n&gt;0; n--)
		result*=n;
	return result;
}

int main()
{
	std::ofstream fout;
	fout.open(&quot;result.txt&quot;);

	bigint n=1;

	std::cin&gt;&gt;n;
	while(n&gt;0)
	{
		fout&lt;&lt;fac(n)&lt;&lt;&#039;\n&#039;;
		std::cin&gt;&gt;n;
	}

	return 0;
}
&lt;/textarea&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;앜ㅋㅋㅋ 더럽다.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;10진수 출력 고쳤어&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-459-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-459-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-459-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=4001059&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>bigint</category>
			<category>bigint</category>
			<category>C++</category>
			<category>Class</category>
			<author>　환타</author>
			<guid>http://zfanta.com/459</guid>
			<comments>http://zfanta.com/entry/c-bigint-class%EC%99%84%EC%84%B1#entry459comment</comments>
			<pubDate>Sun, 20 Dec 2009 17:49:02 +0900</pubDate>
		</item>
		<item>
			<title>장동민</title>
			<link>http://zfanta.com/entry/%EC%9E%A5%EB%8F%99%EB%AF%BC</link>
			<description>&lt;embed width=&quot;640&quot; height=&quot;352&quot; src=&quot;/attachment/cfile21.uf@1523C6264ADAAE0F642BB8.swf&quot; quality=&quot;high&quot; allowScriptAccess=&quot;always&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-466-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-466-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-466-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>장동민</category>
			<author>　환타</author>
			<guid>http://zfanta.com/466</guid>
			<comments>http://zfanta.com/entry/%EC%9E%A5%EB%8F%99%EB%AF%BC#entry466comment</comments>
			<pubDate>Sun, 18 Oct 2009 14:57:28 +0900</pubDate>
		</item>
		<item>
			<title>10초안에 모두 해결</title>
			<link>http://zfanta.com/entry/10%EC%B4%88%EC%95%88%EC%97%90-%EB%AA%A8%EB%91%90-%ED%95%B4%EA%B2%B0</link>
			<description>&lt;object classid=&#039;clsid:d27cdb6e-ae6d-11cf-96b8-444553540000&#039; codebase=&#039;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,0,0&#039;  id=&#039;NFPlayer90865&#039; width=&#039;500&#039; height=&#039;408&#039;&gt;&lt;param name=&#039;movie&#039; value=&#039;http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=C1BD1A52E725D9014F9364BF8D3210F814CE&amp;amp;outKey=V1253cd80922774fac4c772751d45240781d8c8579431259ec0eb72751d45240781d8&#039; /&gt;&lt;param name=&#039;wmode&#039; value=&#039;transparent&#039; /&gt;&lt;param name=&#039;allowScriptAccess&#039; value=&#039;always&#039; /&gt;&lt;param name=&#039;allowFullScreen&#039; value=&#039;true&#039; /&gt;&lt;embed src=&#039;http://serviceapi.nmv.naver.com/flash/NFPlayer.swf?vid=C1BD1A52E725D9014F9364BF8D3210F814CE&amp;amp;outKey=V1253cd80922774fac4c772751d45240781d8c8579431259ec0eb72751d45240781d8&#039; wmode=&#039;transparent&#039; width=&#039;500&#039; height=&#039;408&#039; allowScriptAccess=&#039;always&#039; name=&#039;NFPlayer90865&#039; id=&#039;NFPlayer90865&#039; allowFullScreen=&#039;true&#039; type=&#039;application/x-shockwave-flash&#039; /&gt;&lt;/object&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-464-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-464-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-464-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>10초</category>
			<category>사나이</category>
			<author>　환타</author>
			<guid>http://zfanta.com/464</guid>
			<comments>http://zfanta.com/entry/10%EC%B4%88%EC%95%88%EC%97%90-%EB%AA%A8%EB%91%90-%ED%95%B4%EA%B2%B0#entry464comment</comments>
			<pubDate>Sat, 19 Sep 2009 21:00:00 +0900</pubDate>
		</item>
		<item>
			<title>놀부 100단</title>
			<link>http://zfanta.com/entry/%EB%86%80%EB%B6%80-100%EB%8B%A8</link>
			<description>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/IhdVmdJ0pyU&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;feature=player_embedded&amp;amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowScriptAccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/IhdVmdJ0pyU&amp;amp;color1=0xb1b1b1&amp;amp;color2=0xcfcfcf&amp;amp;feature=player_embedded&amp;amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; allowScriptAccess=&quot;always&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;
&lt;br /&gt;
&lt;div&gt;ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-463-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-463-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-463-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>놀부</category>
			<author>　환타</author>
			<guid>http://zfanta.com/463</guid>
			<comments>http://zfanta.com/entry/%EB%86%80%EB%B6%80-100%EB%8B%A8#entry463comment</comments>
			<pubDate>Sat, 19 Sep 2009 20:48:00 +0900</pubDate>
		</item>
		<item>
			<title>He is The One.</title>
			<link>http://zfanta.com/entry/He-is-The-One</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/144A941B4AA37DD32936FA&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/144A941B4AA37DD32936FA&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;안늙어.jpg&quot; height=&quot;412&quot; width=&quot;490&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
왜 안늙어&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-462-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-462-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-462-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>네오</category>
			<category>클라투</category>
			<category>키아누리브스</category>
			<author>　환타</author>
			<guid>http://zfanta.com/462</guid>
			<comments>http://zfanta.com/entry/He-is-The-One#entry462comment</comments>
			<pubDate>Sun, 06 Sep 2009 18:24:07 +0900</pubDate>
		</item>
		<item>
			<title>visual studio의 쉬프트연산 버그</title>
			<link>http://zfanta.com/entry/visual-studio%EC%9D%98-%EC%89%AC%ED%94%84%ED%8A%B8%EC%97%B0%EC%82%B0-%EB%B2%84%EA%B7%B8</link>
			<description>&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 504px; margin-top: 1px; margin-bottom: 1px; height: 236px; &quot;&gt;
int main()
{
	int i;
	
	i=0;
	i|=1&gt;&gt;(32-i);
	printf(&quot;%d\n&quot;,i);
	
	i=0;
	i|=1&gt;&gt;(32-0);
	printf(&quot;%d\n&quot;,i);

	return 0;
}
&lt;/textarea&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
vs에서 실행한 결과&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile21.uf.tistory.com/original/2061550C4AA35E665ECDD8&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile21.uf.tistory.com/image/2061550C4AA35E665ECDD8&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;bug.jpg&quot; height=&quot;390&quot; width=&quot;414&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
codepad에서 실행한 결과(&lt;a href=&quot;http://codepad.org/7uYLNz6m&quot; target=&quot;_blank&quot; title=&quot;[http://codepad.org/7uYLNz6m]로 이동합니다.&quot;&gt;http://codepad.org/7uYLNz6m&lt;/a&gt;)&lt;/div&gt;
&lt;div&gt;&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/15693F0B4AA35EE659889C&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/15693F0B4AA35EE659889C&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;codepad.jpg&quot; height=&quot;363&quot; width=&quot;319&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
내가 이거때문에 bigint삽질을 얼마나 했는지&lt;/div&gt;
&lt;div&gt;&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/1218C3164AA363643F23DF&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/1218C3164AA363643F23DF&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;디질래.jpg&quot; height=&quot;640&quot; width=&quot;480&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
죽어&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-460-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-460-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-460-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=4118112&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>C/C++</category>
			<category>Visual Studio</category>
			<category>버그</category>
			<author>　환타</author>
			<guid>http://zfanta.com/460</guid>
			<comments>http://zfanta.com/entry/visual-studio%EC%9D%98-%EC%89%AC%ED%94%84%ED%8A%B8%EC%97%B0%EC%82%B0-%EB%B2%84%EA%B7%B8#entry460comment</comments>
			<pubDate>Sun, 06 Sep 2009 16:24:26 +0900</pubDate>
		</item>
		<item>
			<title>2009 정보올림피아드 지역본선 문제 2</title>
			<link>http://zfanta.com/entry/2009-%EC%A0%95%EB%B3%B4%EC%98%AC%EB%A6%BC%ED%94%BC%EC%95%84%EB%93%9C-%EC%A7%80%EC%97%AD%EB%B3%B8%EC%84%A0-%EB%AC%B8%EC%A0%9C-2</link>
			<description>&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;text-align:left;line-height:16.5pt;
mso-pagination:widow-orphan;text-autospace:ideograph-numeric ideograph-other;
word-break:keep-all&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size:14.0pt;mso-bidi-font-size:11.0pt;
font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;탑&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:
굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&amp;nbsp; KOI &lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;통신연구소는 레이저를 이용한 새로운
비밀 통신 시스템 개발을 위한 실험을 하고 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;실험을 위하여 일직선 위에&lt;span lang=&quot;EN-US&quot;&gt; N&lt;/span&gt;개의 높이가 서로 다른 탑을 수평 직선의 왼쪽부터 오른쪽 방향으로 차례로 세우고&lt;span lang=&quot;EN-US&quot;&gt;, &lt;/span&gt;각 탑의 꼭대기에 레이저 송신기를 설치하였다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;모든 탑의 레이저
송신기는 레이저 신호를 지표면과 평행하게 수평 직선의 왼쪽 방향으로 발사하고&lt;span lang=&quot;EN-US&quot;&gt;, &lt;/span&gt;탑의 기둥 모두에는 레이저
신호를 수신하는 장치가 설치되어 있다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;하나의 탑에서 발사된 레이저 신호는 가장 먼저 만나는 단 하나의
탑에서만 수신이 가능하다&lt;span lang=&quot;EN-US&quot;&gt;.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;예를 들어 높이가&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 6, 9, 5, 7&lt;/span&gt;, &lt;span style=&quot;font-family: Gulim; &quot;&gt;4&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 다섯 개의 탑이 수평 직선상에 일렬로 서 있고&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;모든
탑에서는 주어진 탑 순서의 반대 방향&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;(&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;왼쪽 방향&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;으로 동시에
레이저 신호를 발사한다고 하자&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;. &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;그러면&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 4&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 다섯 번째 탑에서 발사한 레이저 신호는 높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 7&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 네 번째
탑이 수신을 하고&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 7&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 네 번째 탑의 신호는 높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 9&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 두 번째 탑이&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 5&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인
세 번째 탑의 신호도 높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 9&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 두 번째 탑이 수신을 한다&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;. &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 9&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 두 번째 탑과 높이가&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 6&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;인 첫 번째 탑이 보낸 레이저 신호는
어떤 탑에서도 수신을 하지 못한다&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;탑들의 개수&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; N&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;과 탑들의 높이가 주어질 때&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;각 각의 탑에서 발사한 레이저 신호를
어느 탑에서 수신하는지를 알아내는 프로그램을 작성하라&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:
굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;실행파일의 이름은&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; TOWER.EXE&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;로 하고&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;, &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;프로그램의 실행시간은&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt; 1&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;초를 넘을 수 없다&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;. &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;부분 점수는 없다&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;span style=&quot;font-family: Gulim; &quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;
font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;
mso-font-kerning:0pt&quot;&gt;입력 형식&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:
10.0pt;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:
0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;입력 파일의 이름은&lt;span lang=&quot;EN-US&quot;&gt; INPUT.TXT&lt;/span&gt;로 한다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;첫째 줄에 탑의 수를 나타내는 정수&lt;span lang=&quot;EN-US&quot;&gt; N&lt;/span&gt;이 주어진다&lt;span lang=&quot;EN-US&quot;&gt;. N&lt;/span&gt;은&lt;span lang=&quot;EN-US&quot;&gt; 1 &lt;/span&gt;이상&lt;span lang=&quot;EN-US&quot;&gt; 500,000 &lt;/span&gt;이하이다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;둘째 줄에는&lt;span lang=&quot;EN-US&quot;&gt; N&lt;/span&gt;개의 탑들의 높이가 직선상에 놓인 순서대로 하나의 빈칸을 사이에 두고 주어진다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;탑들의 높이는&lt;span lang=&quot;EN-US&quot;&gt; 1 &lt;/span&gt;이상&lt;span lang=&quot;EN-US&quot;&gt;
100,000,000 &lt;/span&gt;이하의 정수이다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;
mso-font-kerning:0pt&quot;&gt;출력 형식&lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:
10.0pt;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:
0pt&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;&amp;nbsp; &lt;/span&gt;&lt;span style=&quot;font-family:
굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;출력 파일의 이름은&lt;span lang=&quot;EN-US&quot;&gt; OUTPUT.TXT&lt;/span&gt;로 한다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;첫째 줄에 주어진 탑들의 순서대로 각각의
탑들에서 발사한 레이저 신호를 수신한 탑들의 번호를 하나의 빈칸을 사이에 두고 출력한다&lt;span lang=&quot;EN-US&quot;&gt;. &lt;/span&gt;만약 레이저
신호를 수신하는 탑이 존재하지 않으면&lt;span lang=&quot;EN-US&quot;&gt; 0&lt;/span&gt;을 출력한다&lt;span lang=&quot;EN-US&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:
굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;b&gt;&lt;span style=&quot;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;
mso-font-kerning:0pt&quot;&gt;입력과 출력의 예&lt;/span&gt;&lt;/b&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:
10.0pt;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:
0pt&quot;&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;span style=&quot;font-family:굴림;mso-bidi-font-family:굴림;color:#444444;
mso-font-kerning:0pt&quot;&gt;입력&lt;span lang=&quot;EN-US&quot;&gt; (INPUT.TXT)&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;font-family:굴림;mso-bidi-font-family:
굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;text-align:left;line-height:16.5pt;
mso-pagination:widow-orphan;text-autospace:ideograph-numeric ideograph-other;
word-break:keep-all&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;
font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;5&lt;br /&gt;
6 9 5 7 4&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-size: 16px; &quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;text-align:left;line-height:16.5pt;
mso-pagination:widow-orphan;text-autospace:ideograph-numeric ideograph-other;
word-break:keep-all&quot;&gt;&lt;span style=&quot;font-family:굴림;mso-bidi-font-family:굴림;
color:#444444;mso-font-kerning:0pt&quot;&gt;출력&lt;span lang=&quot;EN-US&quot;&gt; (OUTPUT.TXT)&lt;/span&gt;&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:12.0pt;font-family:굴림;mso-bidi-font-family:굴림;
mso-font-kerning:0pt&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot; align=&quot;left&quot; style=&quot;text-align:left;line-height:16.5pt;
mso-pagination:widow-orphan;text-autospace:ideograph-numeric ideograph-other;
word-break:keep-all&quot;&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;mso-bidi-font-size:10.0pt;
font-family:굴림;mso-bidi-font-family:굴림;color:#444444;mso-font-kerning:0pt&quot;&gt;0 0
2 2 4&lt;/span&gt;&lt;span lang=&quot;EN-US&quot; style=&quot;font-size:12.0pt;font-family:굴림;mso-bidi-font-family:
굴림;mso-font-kerning:0pt&quot;&gt;&lt;o:p&gt;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;

&lt;p class=&quot;MsoNormal&quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;&lt;o:p&gt;&amp;nbsp;&lt;/o:p&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;반복문만 쓸 줄 알면 풀만한 문제네요.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 700px; margin-top: 1px; margin-bottom: 1px; height: 589px; &quot;&gt;
#include &lt;stdio.h&gt;

int *height;

int send(int tower)
{
	int i;	
	for(i=tower-1; i&gt;=0; i--)
	{
		if(height[tower]&lt;=height[i])
			return i+1;
	}
	return 0;
}

int main()
{
	FILE *in, *out;
	int i, n;
	
	in=fopen(&quot;input.txt&quot;, &quot;r&quot;);
	out=fopen(&quot;output.txt&quot;, &quot;w&quot;);

	fscanf(in, &quot;%d&quot;, &amp;n);
	height=(int *)malloc(sizeof(int)*n);

	for(i=0; i&lt;n; i++)
	{
		fscanf(in, &quot;%d&quot;, &amp;height[i]);
		fprintf(out, &quot;%d &quot;, send(i));
	}

	free(height);
	fclose(in);
	fclose(out);

	return 0;
}
&lt;/textarea&gt;&amp;nbsp;&lt;div&gt;
27~31행과 send함수만 보면 됩니다.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
하나 입력받고 send함수에서 왼쪽에 높이가 같거나 높은 탑을 찾아서 위치를 리턴합니다.&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-457-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-457-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-457-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=3764199&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>algorithm</category>
			<category>Koi</category>
			<author>　환타</author>
			<guid>http://zfanta.com/457</guid>
			<comments>http://zfanta.com/entry/2009-%EC%A0%95%EB%B3%B4%EC%98%AC%EB%A6%BC%ED%94%BC%EC%95%84%EB%93%9C-%EC%A7%80%EC%97%AD%EB%B3%B8%EC%84%A0-%EB%AC%B8%EC%A0%9C-2#entry457comment</comments>
			<pubDate>Sun, 26 Jul 2009 20:23:35 +0900</pubDate>
		</item>
		<item>
			<title>C언어로 오목게임만들기 개선</title>
			<link>http://zfanta.com/entry/C%EC%96%B8%EC%96%B4%EB%A1%9C-%EC%98%A4%EB%AA%A9%EA%B2%8C%EC%9E%84%EB%A7%8C%EB%93%A4%EA%B8%B0-%EA%B0%9C%EC%84%A0</link>
			<description>&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;a href=&quot;http://zfanta.com/entry/C%EC%96%B8%EC%96%B4%EB%A1%9C-%EC%98%A4%EB%AA%A9%EB%A7%8C%EB%93%A4%EA%B8%B0-5-%EB%A7%88%EC%A7%80%EB%A7%89&quot;&gt;http://zfanta.com/entry/C언어로-오목만들기-5-마지막&lt;/a&gt;&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;배운지 얼마 안돼서 만들었던 더러운 소스를 개선해봤습니다.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal; &quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-top: 1px; margin-bottom: 1px; height: 3617px; margin-left: 0px; margin-right: 0px; width: 100%; &quot;&gt;
#include &lt;stdio.h&gt;
#include &lt;string.h&gt;
#include &lt;conio.h&gt;
#include &lt;windows.h&gt;

#define UP 72  
#define DOWN 80  
#define LEFT 75  
#define RIGHT 77  
#define ENTER 13  

int board[19][19];
char display[19][19][3];

//커서 숨기기, 보이기(0, 1)
void CursorView(char show)
{
	HANDLE hConsole;
	CONSOLE_CURSOR_INFO ConsoleCursor;
	hConsole = GetStdHandle(STD_OUTPUT_HANDLE);
	ConsoleCursor.bVisible = show;
	ConsoleCursor.dwSize = 1;
	SetConsoleCursorInfo(hConsole , &amp;ConsoleCursor);
}

//커서이동
void gotoxy(int x, int y)
{  
	COORD XY = {x, y};  
	SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), XY);  
}  

//승리메시지, 이어하기
int w_msg(int turn)
{
	char player[3][3]={&quot;&quot;, &quot;흑&quot;, &quot;백&quot;};
	char ans;

	gotoxy(0,20);
	printf(&quot;%s승리 계속할래? (y,n)&quot;, player[turn]);

	fflush(stdin);
	scanf(&quot;%c&quot;, &amp;ans);

	if(ans==&#039;y&#039;)
		return 1;

	return 0;
}

//판깔기
void set()
{
	int y, x;

	memset(board, 0, sizeof(int)*19*19);

	strcpy(display[0][0], &quot;┌&quot;);strcpy(display[0][18] ,&quot;┐&quot;);
	strcpy(display[18][0],&quot;└&quot;);strcpy(display[18][18],&quot;┘&quot;);

	for(y=1; y&lt;18; y++)
	{
		strcpy(display[y][0], &quot;├&quot;);
		strcpy(display[y][18],&quot;┤&quot;);
	}
	for(x=1; x&lt;18; x++)
	{
		strcpy(display[0][x], &quot;┬&quot;);
		strcpy(display[18][x],&quot;┴&quot;);
	}
	for(y=1; y&lt;18; y++)	
		for(x=1; x&lt;18; x++)		
			strcpy(display[y][x],&quot;┼&quot;);

	system(&quot;CLS&quot;);
	for(y=0; y&lt;19; y++, puts(&quot;&quot;))
		for(x=0; x&lt;19; x++)
			printf(&quot;%s&quot;, display[y][x]);
}

//5개 확인
int win(int _y, int _x, int turn)
{
	int x,y;
	int count;
	//가로
	x=_x;
	count=0;
	while(x&gt;0 &amp;&amp; board[_y][x-1] == turn)x--;
	while(x&lt;=18 &amp;&amp; board[_y][x++] == turn)
		count++;

	if(count==5)
	{
		return 1;
	}

	//세로
	x=_x;
	y=_y;
	count=0;

	while(y&gt;0 &amp;&amp; board[y-1][_x] == turn)y--;
	while(y&lt;=18 &amp;&amp; board[y++][_x] == turn)
		count++;

	if(count==5)
	{
		return 1;
	}

	//대각선 ↘
	x=_x;
	y=_y;
	count=0;

	while(x &gt; 0 &amp;&amp; y &gt; 0 &amp;&amp; board[y-1][x-1]==turn)
	{
		x--;
		y--;
	}

	while(x&lt;=18 &amp;&amp; y&lt;=18 &amp;&amp; board[y++][x++] == turn)
		count++;

	if(count==5)
	{
		return 1;
	}

	//대각선 ↙
	x=_x;
	y=_y;
	count=0;

	while(x &lt; 18 &amp;&amp; y &gt; 0 &amp;&amp; board[y-1][x+1]==turn)
	{
		x++;
		y--;
	}

	while(x&gt;=0 &amp;&amp; y&lt;=18 &amp;&amp; board[y++][x--] == turn)
		count++;

	if(count==5)
	{
		return 1;
	}
	return 0;
}


void move(int *y, int *x)
{
	int old_y=*y, old_x=*x;
	char input;

	while((input=getch()) != ENTER)
	{
		if(input == UP)
		{
			old_x=*x;
			old_y=(*y)--;
		}
		else if(input == DOWN)
		{
			old_x=*x;
			old_y=(*y)++;
		}
		else if(input == LEFT)
		{
			old_x=(*x)--;
			old_y=*y;
		}
		else if(input == RIGHT)
		{
			old_x=(*x)++;
			old_y=*y;
		}

		//나머지 연산 엥꼬 방지를 위해 19를 더해줍니다.
		(*x)=((*x) + 19) % 19;
		(*y)=((*y) + 19) % 19;

		gotoxy(old_x*2, old_y);
		printf(&quot;%s&quot;, display[old_y][old_x]);

		gotoxy((*x)*2, *y);
		printf(&quot;⊙&quot;);
	}
}

int put_stone(int y, int x, int turn)
{
	char stone[3][3]={&quot;&quot;,&quot;○&quot;,&quot;●&quot;};
	if(board[y][x] == 0)
	{
		board[y][x]=turn;

		strcpy(display[y][x], stone[turn]);
		gotoxy(x*2, y);
		printf(&quot;%s&quot;, stone[turn]);
		return 1;
	}
	return 0;
}

int game()
{
	int y, x, turn;	//1:흑, 2:백
	char stone[3][3]={&quot;&quot;,&quot;○&quot;,&quot;●&quot;};

	set();	
	y=x=9;
	turn=2;

	gotoxy(x*2,y);
	printf(&quot;⊙&quot;);
	do
	{
		turn^=3;	//1은 2로, 2는 1로

		gotoxy(50, 10);
		printf(&quot;%s차례&quot;, stone[turn]);

		do
		{
			move(&amp;y, &amp;x);
		}while(!put_stone(y, x, turn));
	}while(!win(y, x, turn));

	return w_msg(turn);
}

int main()
{
	CursorView(0);
	while(game());
	return 0;
}
&lt;/textarea&gt;&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;지금 다시 만들어도 더럽긴 하네요.......&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;질문이나 버그는 리플로 많이 달아주세요.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;p id=&quot;more456_0&quot; class=&quot;moreless_fold&quot;&gt;&lt;span style=&quot;cursor: pointer;&quot; onclick=&quot;toggleMoreLess(this, &#039;456_0&#039;,&#039;영양가 없는 글에는 짤방&#039;,&#039;접기&#039;); return false;&quot;&gt;영양가 없는 글에는 짤방&lt;/span&gt;&lt;/p&gt;&lt;div id=&quot;content456_0&quot; class=&quot;moreless_content&quot; style=&quot;display: none;&quot;&gt;&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/113C9F204A6AE993016BED&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/113C9F204A6AE993016BED&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;초딩.jpg&quot; height=&quot;2700&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-456-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-456-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-456-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=3758571&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>C/C++</category>
			<category>c</category>
			<category>게임</category>
			<category>오목</category>
			<author>　환타</author>
			<guid>http://zfanta.com/456</guid>
			<comments>http://zfanta.com/entry/C%EC%96%B8%EC%96%B4%EB%A1%9C-%EC%98%A4%EB%AA%A9%EA%B2%8C%EC%9E%84%EB%A7%8C%EB%93%A4%EA%B8%B0-%EA%B0%9C%EC%84%A0#entry456comment</comments>
			<pubDate>Sat, 25 Jul 2009 20:17:42 +0900</pubDate>
		</item>
		<item>
			<title>나경원 저작권 역관광</title>
			<link>http://zfanta.com/entry/%EB%82%98%EA%B2%BD%EC%9B%90-%EC%A0%80%EC%9E%91%EA%B6%8C-%EC%97%AD%EA%B4%80%EA%B4%91</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/1926E1274A6AD3EC04EDFA&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/1926E1274A6AD3EC04EDFA&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;r.jpg&quot; height=&quot;602&quot; width=&quot;694&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;/div&gt;
&lt;div&gt;
http://minihp.cyworld.com/pims/main/pims_main.asp?tid=26568171&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-455-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-455-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-455-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<author>　환타</author>
			<guid>http://zfanta.com/455</guid>
			<comments>http://zfanta.com/entry/%EB%82%98%EA%B2%BD%EC%9B%90-%EC%A0%80%EC%9E%91%EA%B6%8C-%EC%97%AD%EA%B4%80%EA%B4%91#entry455comment</comments>
			<pubDate>Sat, 25 Jul 2009 18:46:17 +0900</pubDate>
		</item>
		<item>
			<title>필리핀 교도소에서 &#039;sorry sorry&#039;</title>
			<link>http://zfanta.com/entry/%ED%95%84%EB%A6%AC%ED%95%80-%EA%B5%90%EB%8F%84%EC%86%8C%EC%97%90%EC%84%9C-sorry-sorry</link>
			<description>&lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/_43TO_OPj-8&amp;amp;hl=ko&amp;amp;fs=1&amp;amp;rel=0&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowscriptaccess&quot; value=&quot;always&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/_43TO_OPj-8&amp;amp;hl=ko&amp;amp;fs=1&amp;amp;rel=0&quot; type=&quot;application/x-shockwave-flash&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
ㅋㅋㅋㅋ&amp;nbsp;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-454-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-454-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-454-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>슈퍼주니어</category>
			<category>우량아</category>
			<author>　환타</author>
			<guid>http://zfanta.com/454</guid>
			<comments>http://zfanta.com/entry/%ED%95%84%EB%A6%AC%ED%95%80-%EA%B5%90%EB%8F%84%EC%86%8C%EC%97%90%EC%84%9C-sorry-sorry#entry454comment</comments>
			<pubDate>Tue, 07 Jul 2009 17:56:44 +0900</pubDate>
		</item>
		<item>
			<title>소심한 아기곰 곰길이</title>
			<link>http://zfanta.com/entry/%EC%86%8C%EC%8B%AC%ED%95%9C-%EC%95%84%EA%B8%B0%EA%B3%B0-%EA%B3%B0%EA%B8%B8%EC%9D%B4</link>
			<description>&lt;object id=&#039;egloosPlayer&#039; name=&#039;egloosPlayer&#039; classid=&#039;clsid:D27CDB6E-AE6D-11cf-96B8-444553540000&#039; codebase=&#039;http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9.0.115.00&#039; width=&#039;480&#039; height=&#039;400&#039;&gt;&lt;param name=&#039;movie&#039; value=&#039;http://v.egloos.com/v.sk/egloos/a0008171|1909854/20090525130500001600751701&#039; /&gt;&lt;param name=&#039;allowFullscreen&#039; value=&#039;true&#039; /&gt;&lt;param name=&#039;allowScriptAccess&#039; value=&#039;always&#039; /&gt;&lt;param name=&#039;wmode&#039; value=&#039;transparent&#039; /&gt;&lt;param name=&#039;flashvars&#039; value=&#039;useCodePage=0&amp;amp;enableJS=0&#039; /&gt;&lt;embed src=&#039;http://v.egloos.com/v.sk/egloos/a0008171|1909854/20090525130500001600751701&#039; name=&#039;egloosPlayer&#039; wmode=&#039;transparent&#039; allowScriptAccess=&#039;always&#039; allowFullscreen=&#039;true&#039; width=&#039;480&#039; height=&#039;400&#039; pluginspage=&#039;http://www.macromedia.com/go/getflashplayer&#039; type=&#039;application/x-shockwave-flash&#039; flashvars=&#039;useCodePage=0&amp;amp;enableJS=0&#039; /&gt;&lt;/object&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
앜ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-453-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-453-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-453-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>곰</category>
			<author>　환타</author>
			<guid>http://zfanta.com/453</guid>
			<comments>http://zfanta.com/entry/%EC%86%8C%EC%8B%AC%ED%95%9C-%EC%95%84%EA%B8%B0%EA%B3%B0-%EA%B3%B0%EA%B8%B8%EC%9D%B4#entry453comment</comments>
			<pubDate>Sat, 13 Jun 2009 21:05:05 +0900</pubDate>
		</item>
		<item>
			<title>프로그래밍 카테고리의 새글은 Studying the Logical World에 쓰여집니다.</title>
			<link>http://zfanta.com/entry/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%EC%B9%B4%ED%85%8C%EA%B3%A0%EB%A6%AC%EC%9D%98-%EC%83%88%EA%B8%80%EC%9D%80-Studying-the-Logical-World%EC%97%90-%EC%93%B0%EC%97%AC%EC%A7%91%EB%8B%88%EB%8B%A4-1</link>
			<description>&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;Verdana&quot;&gt;&lt;div&gt;
오래 전부터 &lt;a href=&quot;http://studyinglw.tistory.com&quot; target=&quot;_blank&quot; title=&quot;[http://studyinglw.tistory.com]로 이동합니다.&quot;&gt;Studying the Logical World.&lt;/a&gt;의 &lt;a href=&quot;http://studyinglw.tistory.com&quot; target=&quot;_blank&quot; title=&quot;[http://studyinglw.tistory.com]로 이동합니다.&quot;&gt;fanta&#039;s&lt;/a&gt;카테고리에 글 쓰고 있었습니다.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
새 글은 &lt;a href=&quot;http://studyinglw.tistory.com&quot; target=&quot;_blank&quot; title=&quot;[http://studyinglw.tistory.com]로 이동합니다.&quot;&gt;http://studyinglw.tistory.com&lt;/a&gt;에서 확인해주세요.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile5.uf.tistory.com/original/1822DC164A2BCBB1E16A3E&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/1822DC164A2BCBB1E16A3E&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;개밥 털이.jpg&quot; height=&quot;375&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
많이 들러주세요.&lt;/div&gt;
&lt;/font&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-452-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-452-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-452-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>Programming</category>
			<author>　환타</author>
			<guid>http://zfanta.com/452</guid>
			<comments>http://zfanta.com/entry/%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%98%EB%B0%8D-%EC%B9%B4%ED%85%8C%EA%B3%A0%EB%A6%AC%EC%9D%98-%EC%83%88%EA%B8%80%EC%9D%80-Studying-the-Logical-World%EC%97%90-%EC%93%B0%EC%97%AC%EC%A7%91%EB%8B%88%EB%8B%A4-1#entry452comment</comments>
			<pubDate>Sun, 07 Jun 2009 23:17:24 +0900</pubDate>
		</item>
		<item>
			<title>2009 정보올림피아드 지역본선 문제 나도 풀어보기</title>
			<link>http://zfanta.com/entry/2009-%EC%A0%95%EB%B3%B4%EC%98%AC%EB%A6%BC%ED%94%BC%EC%95%84%EB%93%9C-%EC%A7%80%EC%97%AD%EB%B3%B8%EC%84%A0-%EB%AC%B8%EC%A0%9C-%EB%82%98%EB%8F%84-%ED%92%80%EC%96%B4%EB%B3%B4%EA%B8%B0</link>
			<description>&lt;br /&gt;
&lt;div&gt;
&lt;a href=&quot;http://un-i.tistory.com/entry/2009-정보올림피아드-지역본선-문제-Review-1&quot; target=&quot;_blank&quot; title=&quot;[http://un-i.tistory.com/entry/2009-정보올림피아드-지역본선-문제-Review-1]로 이동합니다.&quot;&gt;문제는 여기서&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;a href=&quot;http://un-i.tistory.com/entry/2009-정보올림피아드-지역본선-문제-Review-1&quot; target=&quot;_blank&quot; title=&quot;[http://un-i.tistory.com/entry/2009-정보올림피아드-지역본선-문제-Review-1]로 이동합니다.&quot;&gt;2009 정보올림피아드 지역본선 문제 Review (1)&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
난 이번에 정올에 안나갔다.&lt;/div&gt;
&lt;div&gt;
이렇게 일찍 하는 줄 몰랐음 ㅇㅅㅇ&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;

&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-top: 1px; margin-bottom: 1px; height: 661px; margin-left: 0px; margin-right: 0px; width: 100%; &quot;&gt;
#include &lt;stdio.h&gt;

//한 구간의 길이를 리턴
int len(char *string)
{
	int i;

	for(i=0; string[i] == string[i+1]; i++);

	return i+1;
}

//가장 긴 구간을 찾습니다.
int check(char *string)
{
	int i, tmp, result=0;

	for(i=0; string[i]; i+=tmp)
	{
		tmp=len(string+i);
		if(result &lt; tmp)
			result=tmp;
	}
	return result;
}

int main()
{
	int i;
	char string[9];
	FILE *in =	fopen(&quot;input.txt&quot;,&quot;r&quot;);
	FILE *out=	fopen(&quot;output.txt&quot;,&quot;w&quot;);

	for(i=0; i&lt;3; i++)
	{
		fscanf(in, &quot;%s&quot;, string);
		fprintf(out, &quot;%d\n&quot;, check(string));
	}
	return 0;
}
&lt;/textarea&gt;&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;
&lt;div&gt;
&lt;font class=&quot;Apple-style-span&quot; color=&quot;#000000&quot; face=&quot;-webkit-monospace&quot; size=&quot;3&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 13px; line-height: normal;&quot;&gt;내년에 나가야하나.&lt;/span&gt;&lt;/font&gt;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-450-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-450-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-450-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>algorithm</category>
			<category>정보올림피아드</category>
			<author>　환타</author>
			<guid>http://zfanta.com/450</guid>
			<comments>http://zfanta.com/entry/2009-%EC%A0%95%EB%B3%B4%EC%98%AC%EB%A6%BC%ED%94%BC%EC%95%84%EB%93%9C-%EC%A7%80%EC%97%AD%EB%B3%B8%EC%84%A0-%EB%AC%B8%EC%A0%9C-%EB%82%98%EB%8F%84-%ED%92%80%EC%96%B4%EB%B3%B4%EA%B8%B0#entry450comment</comments>
			<pubDate>Sun, 07 Jun 2009 22:55:15 +0900</pubDate>
		</item>
		<item>
			<title>아 usb 사망</title>
			<link>http://zfanta.com/entry/%EC%95%84-usb-%EC%82%AC%EB%A7%9D</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile22.uf.tistory.com/original/127CF2214A2A18AF117178&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile22.uf.tistory.com/image/127CF2214A2A18AF117178&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;정신 없음.jpg&quot; height=&quot;540&quot; width=&quot;720&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
친구년 pmp에 꽂았다가 usb가 죽어서 파이널 데이터로&amp;nbsp;급하게 복구했다.&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile1.uf.tistory.com/original/1966FA214A2A18AE27EB59&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile1.uf.tistory.com/image/1966FA214A2A18AE27EB59&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;눈물2.jpg&quot; height=&quot;533&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
지금 눈물이.........&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-449-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-449-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-449-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>뻘소리</category>
			<category>usb</category>
			<category>살려놔</category>
			<author>　환타</author>
			<guid>http://zfanta.com/449</guid>
			<comments>http://zfanta.com/entry/%EC%95%84-usb-%EC%82%AC%EB%A7%9D#entry449comment</comments>
			<pubDate>Sat, 06 Jun 2009 16:23:11 +0900</pubDate>
		</item>
		<item>
			<title>ebs 명강의</title>
			<link>http://zfanta.com/entry/ebs-%EB%AA%85%EA%B0%95%EC%9D%98</link>
			<description>&lt;div&gt;
&lt;br /&gt;
&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://zfanta.tistory.com/attachment/cfile24.uf@1663300C49F4113F3AFAFF.flv&quot;&gt;&lt;img src=&quot;http://cfs.tistory.com/blog/image/extension/unknown.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; 얼굴_520x364.flv&lt;/a&gt;&lt;/div&gt;&lt;div&gt;
청동거울 설명하시는 것 같은데&lt;/div&gt;
이 선생님 성함좀
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-448-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-448-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-448-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>EBS</category>
			<author>　환타</author>
			<guid>http://zfanta.com/448</guid>
			<comments>http://zfanta.com/entry/ebs-%EB%AA%85%EA%B0%95%EC%9D%98#entry448comment</comments>
			<pubDate>Sun, 26 Apr 2009 16:26:09 +0900</pubDate>
		</item>
		<item>
			<title>2009년 고1 영어듣기평가 답</title>
			<link>http://zfanta.com/entry/2009%EB%85%84-%EA%B3%A01-%EC%98%81%EC%96%B4%EB%93%A3%EA%B8%B0%ED%8F%89%EA%B0%80-%EB%8B%B5</link>
			<description>&lt;P&gt;1. 1&lt;/P&gt;
&lt;P&gt;2. 2&lt;/P&gt;
&lt;P&gt;3. 1&lt;/P&gt;
&lt;P&gt;4. 1&lt;/P&gt;
&lt;P&gt;5. 5&lt;/P&gt;
&lt;P&gt;6. 4&lt;/P&gt;
&lt;P&gt;7. 3&lt;/P&gt;
&lt;P&gt;8. 4&lt;/P&gt;
&lt;P&gt;9. 2&lt;/P&gt;
&lt;P&gt;10. 3&lt;/P&gt;
&lt;P&gt;11. 3&lt;/P&gt;
&lt;P&gt;12. 2&lt;/P&gt;
&lt;P&gt;13. 5 &lt;/P&gt;
&lt;P&gt;14. 3&lt;/P&gt;
&lt;P&gt;15. 4&lt;/P&gt;
&lt;P&gt;16. 5&lt;/P&gt;
&lt;P&gt;17. 5&lt;/P&gt;
&lt;P&gt;18. 2&lt;/P&gt;
&lt;P&gt;19. 2&lt;/P&gt;
&lt;P&gt;20. 4 &lt;br /&gt;&lt;br /&gt;ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;br /&gt;짤방이 없엌ㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋㅋ&lt;/P&gt;</description>
			<category>정보 소식</category>
			<category>영어듣기평가</category>
			<author>　환타</author>
			<guid>http://zfanta.com/447</guid>
			<comments>http://zfanta.com/entry/2009%EB%85%84-%EA%B3%A01-%EC%98%81%EC%96%B4%EB%93%A3%EA%B8%B0%ED%8F%89%EA%B0%80-%EB%8B%B5#entry447comment</comments>
			<pubDate>Wed, 15 Apr 2009 18:22:37 +0900</pubDate>
		</item>
		<item>
			<title>뭐지?</title>
			<link>http://zfanta.com/entry/%EB%AD%90%EC%A7%80</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile4.uf.tistory.com/original/207C431049D85247C1C3D8&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile4.uf.tistory.com/image/207C431049D85247C1C3D8&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;뭐지.jpg&quot; height=&quot;576&quot; width=&quot;720&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
뭔가 이상해.....&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-446-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-446-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-446-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>뻘소리</category>
			<category>리눅스</category>
			<category>우분투</category>
			<author>　환타</author>
			<guid>http://zfanta.com/446</guid>
			<comments>http://zfanta.com/entry/%EB%AD%90%EC%A7%80#entry446comment</comments>
			<pubDate>Sun, 05 Apr 2009 15:41:00 +0900</pubDate>
		</item>
		<item>
			<title>mp3 무료다운되는 다음의 병림픽 언제 끝나?</title>
			<link>http://zfanta.com/entry/%EB%8B%A4%EC%9D%8C%EC%9D%98-%EB%B3%91%EB%A6%BC%ED%94%BD-%EC%96%B8%EC%A0%9C-%EB%81%9D%EB%82%98</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile5.uf.tistory.com/original/14648C1049BB790048F1F2&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile5.uf.tistory.com/image/14648C1049BB790048F1F2&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;1.jpg&quot; height=&quot;618&quot; width=&quot;507&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
정보의 바다에서 둥실둥실 표류하다가 얻은 프로그램.&lt;/div&gt;
&lt;div&gt;
이번에도 맥스짱에서 리소스해커로 문자열 몇개 수정했나보다.&lt;/div&gt;
&lt;div&gt;
오래된 프로그램같은데 잘 받아진다.&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
어떤 프로그램인지 궁금해서 뜯어보니.&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile25.uf.tistory.com/original/2004DB0F49BB7B213AB449&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile25.uf.tistory.com/image/2004DB0F49BB7B213AB449&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;2.jpg&quot; height=&quot;62&quot; width=&quot;720&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/div&gt;
&lt;div&gt;
다음에서 받는구나................&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
아마도 미리듣기 페이지에서 약간의 재주로 원본파일이 있는 경로를 추출해서 받는 것 같다.&lt;/div&gt;
&lt;div&gt;
다음답게 경로명 몇 글자만 다른 곳에 원본파일을 저장해놨겠지?????????????????????????????????????????????????????????????&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfile2.uf.tistory.com/original/13738B0E49BB7C956F8E83&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfile2.uf.tistory.com/image/13738B0E49BB7C956F8E83&quot; alt=&quot;&quot; filemime=&quot;image/jpeg&quot; filename=&quot;아무도_훔쳐갈_수_없어.jpg&quot; height=&quot;234&quot; width=&quot;310&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
다음은 지들이 이렇게 허술한 걸 모르고 있겠지.jpg&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-445-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-445-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-445-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=2729182&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>뻘소리</category>
			<category>Daum</category>
			<category>다음</category>
			<category>병맛</category>
			<author>　환타</author>
			<guid>http://zfanta.com/445</guid>
			<comments>http://zfanta.com/entry/%EB%8B%A4%EC%9D%8C%EC%9D%98-%EB%B3%91%EB%A6%BC%ED%94%BD-%EC%96%B8%EC%A0%9C-%EB%81%9D%EB%82%98#entry445comment</comments>
			<pubDate>Sat, 14 Mar 2009 18:47:02 +0900</pubDate>
		</item>
		<item>
			<title>C 연산자 우선순위</title>
			<link>http://zfanta.com/entry/%E3%85%81</link>
			<description>&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; color: rgb(68, 68, 68); font-size: 13px; line-height: 22px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: separate; -webkit-border-horizontal-spacing: 0px; -webkit-border-vertical-spacing: 0px;&quot;&gt;&lt;table border=&quot;1&quot; cellspacing=&quot;0&quot; bordercolordark=&quot;white&quot; bordercolorlight=&quot;black&quot; width=&quot;100%&quot;&gt;
    &lt;tbody&gt;&lt;tr&gt;
        &lt;td width=&quot;30%&quot; height=&quot;21&quot;&gt;1(우선순위, 낮을수록 먼저 수행)&lt;/td&gt;
        &lt;td width=&quot;35%&quot; height=&quot;21&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;( ) [ ] -&gt; .&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot; height=&quot;21&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;2&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;! ~ ++ -- + -(&lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;부호&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;) *(&lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;포인터&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;) &amp;amp; sizeof&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;오른쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;3&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;*(&lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;곱셈&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;) / %&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;4&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;+ -(&lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;덧셈&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;, &lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;뺄셈&lt;/span&gt;&lt;span lang=&quot;EN-US&quot;&gt;)&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;5&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&amp;lt;&amp;lt; &gt;&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;6&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&amp;lt; &amp;lt;= &gt; &gt;=&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;7&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;== !=&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;8&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&amp;amp;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;9&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;^&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;10&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;|&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;11&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&amp;amp;&amp;amp;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;12&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;||&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;13&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;? :&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;오른쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;14&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span lang=&quot;EN-US&quot;&gt;= &lt;/span&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;복합대입&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;오른쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
        &lt;td width=&quot;30%&quot;&gt;15&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;,&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
        &lt;td width=&quot;35%&quot;&gt;            &lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; font-family: 돋움; line-height: 19px; &quot;&gt;&lt;span style=&quot;font-family: 굴림; &quot;&gt;왼쪽&lt;/span&gt; &lt;span style=&quot;font-family: 굴림; &quot;&gt;우선&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/td&gt;
    &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/span&gt;&lt;/span&gt;&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; color: rgb(68, 68, 68); font-size: 13px; line-height: 22px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; color: rgb(68, 68, 68); font-size: 13px; line-height: 22px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;border-collapse: collapse; color: rgb(68, 68, 68); font-size: 13px; line-height: 22px; -webkit-border-horizontal-spacing: 1px; -webkit-border-vertical-spacing: 1px;&quot;&gt;외울 필요없이 그냥 헷갈리면 괄호로 감싸주세요.&lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-444-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-444-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-444-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>C/C++</category>
			<category>C언어</category>
			<author>　환타</author>
			<guid>http://zfanta.com/444</guid>
			<comments>http://zfanta.com/entry/%E3%85%81#entry444comment</comments>
			<pubDate>Sat, 07 Mar 2009 21:05:56 +0900</pubDate>
		</item>
		<item>
			<title>작용과 반작용 : 축구경기속 과학</title>
			<link>http://zfanta.com/entry/%EC%9E%91%EC%9A%A9%EA%B3%BC-%EB%B0%98%EC%9E%91%EC%9A%A9-%EC%B6%95%EA%B5%AC%EA%B2%BD%EA%B8%B0%EC%86%8D-%EA%B3%BC%ED%95%99</link>
			<description>&lt;embed width=&quot;640&quot; height=&quot;480&quot; src=&quot;/attachment/cfile4.uf@154F730A49A90DAD93FC8D.swf&quot; quality=&quot;high&quot; allowScriptAccess=&quot;always&quot; type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot;/&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
어~~~~~~~~~~~~~~~&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-443-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-443-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-443-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>ㅋㅋㅋㅋㅋㅋㅋ</category>
			<category>과학</category>
			<category>작용반작용</category>
			<category>축구</category>
			<author>　환타</author>
			<guid>http://zfanta.com/443</guid>
			<comments>http://zfanta.com/entry/%EC%9E%91%EC%9A%A9%EA%B3%BC-%EB%B0%98%EC%9E%91%EC%9A%A9-%EC%B6%95%EA%B5%AC%EA%B2%BD%EA%B8%B0%EC%86%8D-%EA%B3%BC%ED%95%99#entry443comment</comments>
			<pubDate>Sat, 28 Feb 2009 19:11:57 +0900</pubDate>
		</item>
		<item>
			<title>UVa. 101 - The Blocks Problem 번역</title>
			<link>http://zfanta.com/entry/UVa-101-The-Blocks-Problem-%EB%B2%88%EC%97%AD</link>
			<description>&lt;a href=&quot;http://원문링크&quot; target=&quot;_blank&quot; title=&quot;[http://원문링크]로 이동합니다.&quot;&gt;원문링크&lt;/a&gt;&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://zfanta.tistory.com/attachment/49a6708140732EY.pdf&quot;&gt;&lt;img src=&quot;http://cfs.tistory.com/blog/image/extension/pdf.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; 101.pdf&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal; &quot;&gt;&lt;h1&gt;&lt;center&gt;&lt;table bgcolor=&quot;#0060F0&quot;&gt;
&lt;tbody&gt;&lt;tr&gt;
&lt;td&gt;&lt;b&gt;&lt;font size=&quot;5&quot; color=&quot;#C0FFFF&quot;&gt;&lt;a name=&quot;SECTION0001000000000000000000&quot;&gt;블록 문제&lt;/a&gt; &lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;
&lt;/center&gt;&lt;/h1&gt;&lt;p&gt;&lt;/p&gt;
&lt;h2&gt;&lt;font color=&quot;#0070E8&quot;&gt;&lt;a name=&quot;SECTION0001001000000000000000&quot;&gt;배경&lt;/a&gt; &lt;/font&gt;&lt;/h2&gt;&lt;p&gt;과감히 생략.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h2&gt;&lt;font color=&quot;#0070E8&quot;&gt;&lt;a name=&quot;SECTION0001002000000000000000&quot;&gt;문제&lt;/a&gt; &lt;/font&gt;&lt;/h2&gt;로봇의 팔이 평평한 테이블에 있는 블럭을 명령어대로 움직이게 하는 문제.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal; &quot;&gt;처음엔 아래처럼 n개의 블록(0부터 n-1까지)들이 있고 &lt;img width=&quot;106&quot; height=&quot;31&quot; align=&quot;MIDDLE&quot; border=&quot;0&quot; src=&quot;http://icpcres.ecs.baylor.edu/onlinejudge/external/1/101img1.gif&quot; alt=&quot;$0 \leq i &amp;lt; n-1$&quot;&gt;의 범위 내에 모든 &lt;span class=&quot;Apple-style-span&quot; style=&quot;font-style: italic; &quot;&gt;i&lt;/span&gt;에 대해 &lt;i&gt;b&lt;/i&gt;&lt;sub&gt;&lt;i&gt;i&lt;/i&gt;&lt;/sub&gt; 와  &lt;i&gt;b&lt;/i&gt;&lt;sub&gt;&lt;i&gt;i&lt;/i&gt;+1&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: 16px; &quot;&gt;은 인접해있다.&lt;div class=&quot;imageblock center&quot; style=&quot;text-align: center; clear: both;&quot;&gt;&lt;a href=&quot;http://cfs13.tistory.com/original/26/tistory/2009/02/26/20/32/49a67de66d5e5&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs13.tistory.com/image/26/tistory/2009/02/26/20/32/49a67de66d5e5&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;101img2.gif&quot; height=&quot;52&quot; width=&quot;433&quot;/&gt;&lt;/a&gt;&lt;/div&gt;&lt;/span&gt;&lt;/sub&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal; &quot;&gt;&lt;div align=&quot;CENTER&quot;&gt;
&lt;strong&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51); font-weight: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;그림 :&lt;/strong&gt; 아름다운 초기의 블럭나라&lt;/div&gt;
&lt;br /&gt;
&lt;p&gt;로봇의 팔에 하사하는 명령어 :&lt;/p&gt;
&lt;p&gt;*a와 b는 블럭번호.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;move &lt;i&gt;a&lt;/i&gt; onto &lt;i&gt;b&lt;/i&gt;&lt;p&gt;a와 b에 있는 블록들을 제자리에 돌려놓고 a블럭을 b블럭 위로 옮긴다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;move &lt;i&gt;a&lt;/i&gt; over &lt;i&gt;b&lt;/i&gt;&lt;p&gt;a위에 있는 블록들을 제자리에 돌려놓고 b블럭이 있는 블럭 기둥의 꼭대기로 a를 옮긴다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;pile &lt;i&gt;a&lt;/i&gt; onto &lt;i&gt;b&lt;/i&gt;&lt;p&gt;b위에 있는 블록들을 제자리에 돌려놓고 a블록 위에 있는 블록기둥( a를 포함하여)을 b위로 옮긴다. 옮길 때 블록의 순서는 유지한다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;pile &lt;i&gt;a&lt;/i&gt; over &lt;i&gt;b&lt;br /&gt;
&lt;/i&gt;&lt;p&gt;a블록 위에 있는 블록기둥( a를 포함하여)을 b가 있는 블록기둥위로 옮긴다. 옮길 때 블록의 순서는 유지한다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;quit&lt;p&gt;종료.&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;a = b일 때나 a와 b가 같은 블록기둥에 있을 때는 잘못된 명령이므로 무시한다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h2&gt;&lt;font color=&quot;#0070E8&quot;&gt;&lt;a name=&quot;SECTION0001003000000000000000&quot;&gt;입력&lt;/a&gt; &lt;/font&gt;&lt;/h2&gt;첫 줄은 블록나라의 블록 개수를 나타내는 n(0 &amp;lt; &lt;i&gt;n&lt;/i&gt; &amp;lt; 25)이 입력된다.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal;&quot;&gt;두 번째 줄부터 한 줄에 하나의 명령어가 입력되며 quit명령어가 입력될 때 까지 실행한다.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: &#039;times new roman&#039;; font-size: 16px; line-height: normal; &quot;&gt;
&lt;p&gt;잘못된 문법의 명령어는 없다.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;h2&gt;&lt;font color=&quot;#0070E8&quot;&gt;&lt;a name=&quot;SECTION0001004000000000000000&quot;&gt;출력&lt;/a&gt; &lt;/font&gt;&lt;/h2&gt;&lt;p&gt;블록나라의 최종모습을 출력한다. &lt;/p&gt;
&lt;p&gt;각 줄의 처음에는 블록기둥 위치의 번호 &lt;i&gt;i&lt;/i&gt; ( &lt;img width=&quot;76&quot; height=&quot;31&quot; align=&quot;MIDDLE&quot; border=&quot;0&quot; src=&quot;/attachment/49a67e3fcc730BY.gif&quot; alt=&quot;$0 \leq i &amp;lt; n$&quot;&gt;, n은 블록의 개수)를 출력하고 바로 다음에 콜론(:)을 출력한다 . &lt;/p&gt;
&lt;p&gt;공백문자 하나를 출력한다.&lt;/p&gt;
&lt;p&gt;블록이 있다면 공백문자로 구분하여 출력하고 없다면 출력하지 않는다.&lt;/p&gt;
&lt;p&gt;줄 끝에는 공백이 있으면 안된다.&lt;/p&gt;
&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 112, 232); font-size: 24px; font-weight: bold; &quot;&gt;&lt;a name=&quot;SECTION0001005000000000000000&quot;&gt;입력 예시&lt;/a&gt; &lt;/span&gt;&lt;/p&gt;
&lt;pre&gt;10
move 9 onto 1
move 8 over 1
move 7 over 1
move 6 over 1
pile 8 over 6
pile 8 over 5
move 2 over 1
move 4 over 9
quit
&lt;/pre&gt;&lt;p&gt;&lt;/p&gt;
&lt;h2&gt;&lt;font color=&quot;#0070E8&quot;&gt;&lt;a name=&quot;SECTION0001006000000000000000&quot;&gt;출력 예시&lt;/a&gt; &lt;/font&gt;&lt;/h2&gt;&lt;pre&gt; 0: 0
 1: 1 9 2 4
 2:
 3: 3
 4:
 5: 5 8 7 6
 6:
 7:
 8:
 9:&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;
&lt;/pre&gt;&lt;pre&gt;AC&lt;/pre&gt;&lt;/span&gt;
&lt;/div&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-top: 1px; margin-bottom: 1px; height: 2015px; margin-left: 0px; margin-right: 0px; width: 705px; &quot;&gt;
#include &lt;iostream&gt;
#include &lt;vector&gt;

using namespace std;
int n;
vector&lt; int &gt; blocks[25];

void init()
{
	int i;
	for(i=0; i&lt;n; i++)
		blocks[i].push_back(i);
}

int find_block(int block)
{
	int i,j;
	
	for(i=0; i&lt;n; i++)
		for(j=0; j&lt;blocks[i].size(); j++)
			if(block==blocks[i][j])
				return i;
}

void returning(int a)
{
	int i, index;
	
	index=find_block(a);
	for(i=blocks[index].size()-1; blocks[index][i]!=a; i--)
	{
		blocks[blocks[index][i]].push_back(blocks[index][i]);
		blocks[index].pop_back();
	}
}

void move()
{
	int a, b;
	int index_a, index_b;
	char option[5];
	
	scanf(&quot; %d %s %d&quot;, &amp;a, option, &amp;b);

	index_a=find_block(a);
	index_b=find_block(b);

	if(index_a == index_b)
		return;

	if(a==b)
		return;
	if( strcmp(option, &quot;onto&quot;)==0 )
	{
		returning(b);
	}	
	returning(a);
	
	blocks[index_b].push_back(blocks[index_a][blocks[index_a].size()-1]);
	blocks[index_a].pop_back();
}

void pile()
{
	int a, b;
	int index_a, index_b, i;
	char option[5];
	vector&lt;int&gt; tmp;
	
	scanf(&quot; %d %s %d&quot;, &amp;a, option, &amp;b);

	index_a=find_block(a);
	index_b=find_block(b);

	if(index_a == index_b)
		return;

	if( strcmp(option, &quot;onto&quot;)==0 )
	{
		returning(b);
	}
	
	for(i=blocks[index_a].size()-1; ; i--)//
	{
		tmp.push_back(blocks[index_a][i]);
		blocks[index_a].pop_back();
		if(tmp[tmp.size()-1]==a)
			break;
	}
	for(i=tmp.size()-1; tmp.empty()==0; i--)//
	{
		blocks[index_b].push_back(tmp[i]);
		tmp.pop_back();
	}
}

int get_com()
{
	char com[5];
	
	scanf(&quot;%s&quot;, com);
	if( strcmp(com, &quot;quit&quot;)==0 )
		return 0;
	
	else if( strcmp(com, &quot;move&quot;)==0 )
		move();
	else
		pile();
	return 1;
}

void print()
{
	int i,j;
	for(i=0; i&lt;n; i++)
	{
		printf(&quot;%d:&quot;,i);
		for(j=0; j&lt;blocks[i].size(); j++)
		{
			printf(&quot; %d&quot;,blocks[i][j]);
		}
		printf(&quot;\n&quot;);
	}
}

int main()
{
	scanf(&quot;%d&quot;,&amp;n);

	init();	
	while( get_com() );
	print();
}
&lt;/textarea&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-442-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-442-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-442-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>algorithm</category>
			<category>UVA</category>
			<category>프로그래밍</category>
			<author>　환타</author>
			<guid>http://zfanta.com/442</guid>
			<comments>http://zfanta.com/entry/UVa-101-The-Blocks-Problem-%EB%B2%88%EC%97%AD#entry442comment</comments>
			<pubDate>Thu, 26 Feb 2009 19:48:54 +0900</pubDate>
		</item>
		<item>
			<title>trojan dns changer바이러스 걸린것같은데</title>
			<link>http://zfanta.com/entry/trojan-dns-changer%EB%B0%94%EC%9D%B4%EB%9F%AC%EC%8A%A4-%EA%B1%B8%EB%A6%B0%EA%B2%83%EA%B0%99%EC%9D%80%EB%8D%B0</link>
			<description>아 신상바이러스인가 잘 안잡히네요...&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;확실한 치료법좀...&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs12.tistory.com/original/20/tistory/2009/02/23/21/10/49a292379c1a7&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs12.tistory.com/image/20/tistory/2009/02/23/21/10/49a292379c1a7&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;그런적_없다_살려줘.JPG&quot; height=&quot;215&quot; width=&quot;564&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;살려주세요.&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-441-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-441-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;img id=&quot;ccl-icon-441-2&quot; class=&quot;entry-ccl-nd&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black03.png&quot; alt=&quot;변경 금지&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-nd/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-nd/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>뻘소리</category>
			<author>　환타</author>
			<guid>http://zfanta.com/441</guid>
			<comments>http://zfanta.com/entry/trojan-dns-changer%EB%B0%94%EC%9D%B4%EB%9F%AC%EC%8A%A4-%EA%B1%B8%EB%A6%B0%EA%B2%83%EA%B0%99%EC%9D%80%EB%8D%B0#entry441comment</comments>
			<pubDate>Mon, 23 Feb 2009 21:11:21 +0900</pubDate>
		</item>
		<item>
			<title>아... 소멸자가 사람 잡아요.</title>
			<link>http://zfanta.com/entry/%EC%95%84-%EC%86%8C%EB%A9%B8%EC%9E%90%EA%B0%80-%EC%82%AC%EB%9E%8C-%EC%9E%A1%EC%95%84%EC%9A%94</link>
			<description>&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 100%; margin-top: 1px; margin-bottom: 1px; height: 3060px; &quot;&gt;
#include &lt;iostream&gt;

class bigfloat
{
private:
	char *arr;
	char sign;
	int leninte, lendeci, lenwh;

public:
	bigfloat();
	~bigfloat();
	void operator = (char *);
	void operator = (double);
	void operator = (bigfloat &amp;);
	void print();

	friend bigfloat operator + (bigfloat &amp;, bigfloat &amp;);
};

bigfloat::bigfloat()
{
	arr=new char[1];
	arr[0]=0;
	sign=&#039;+&#039;;
	lenwh=leninte=1;
	lendeci=0;
}

bigfloat::~bigfloat()
{
	delete []arr;
	std::cout&lt;&lt;&quot;소멸자&quot;&lt;&lt;std::endl;
}

void bigfloat::operator = (char *tmp)
{
	int i, last, flagdeci=0, ind_arr;
	char *string;

	last=strlen(tmp);

	string=new char[last+1];
	memcpy(string,tmp,sizeof(char)*last+1);


	if(string[0] == &#039;+&#039; || string[0] == &#039;-&#039;)	//부호제거
	{
		sign=string[0];
		for(i=0; i&lt;last; i++)
			string[i]=string[i+1];
		last--;
	}

	for(i=0; i&lt;last; i++)
	{
		if(string[i]==&#039;.&#039;)						//.있으면
		{
			flagdeci=1;
			break;
		}
	}

	if(flagdeci)
	{
		for(i=last-1; string[i]==&#039;0&#039;; i--)		//0제거
		{
			string[i]=&#039;\0&#039;;
		}
		if(string[i]==&#039;.&#039;)
			string[i]=&#039;\0&#039;;
	}

	for(i=0; string[i]!=&#039;.&#039; &amp;&amp; string[i]!=&#039;\0&#039;; i++);
	leninte=i;

	if(flagdeci)
		i++;

	for(; string[i]!=&#039;\0&#039;; i++);
	lendeci = i - (leninte+flagdeci);
	lenwh = leninte + lendeci;

	delete []arr;
	arr=new char[lenwh];

	ind_arr=i=0;
	while(string[i]!=&#039;\0&#039;)
	{
		arr[ind_arr++]=string[i++]-&#039;0&#039;;
		if(string[i]==&#039;.&#039;)
			i++;
	}
}

void bigfloat::operator = (double a)
{
	char string[512];
	sprintf(string,&quot;%lf&quot;,a);
	*this=string;
}



void bigfloat::operator = (bigfloat &amp;src)
{
	this-&gt;lendeci = src.lendeci;
	this-&gt;leninte = src.leninte;
	this-&gt;lenwh   = src.lenwh;
	if(arr)
	delete []this-&gt;arr;
	this-&gt;arr = new char[this-&gt;lenwh];
	memcpy(this-&gt;arr, src.arr, sizeof(char) * this-&gt;lenwh);
}
void bigfloat::print()
{
	int i;
	for(i=0; i&lt;lenwh; i++)
	{
		if(i==leninte)
			printf(&quot;.&quot;);
		printf(&quot;%d&quot;,arr[i]);
	}
	printf(&quot;\nsign:%c\nlenwh:%d\nleninte:%d\nlendeci:%d&quot;,sign,lenwh,leninte,lendeci);
	printf(&quot;\n\n&quot;);

}
bigfloat operator + (bigfloat &amp;first, bigfloat &amp;second)
{
	int lennew, point, ind_result, ind_shorter, i, j, hi, flag;
	char *result, *string;
	bigfloat toreturn;

	bigfloat &amp;longer=(first.leninte &gt; second.leninte)?first:second;
	bigfloat &amp;shorter=(first.leninte &lt;= second.leninte)?first:second;

	lennew = point = (first.leninte &gt; second.leninte)?first.leninte:second.leninte;
	lennew += (first.lendeci &gt; second.lendeci)?first.lendeci:second.lendeci;

	result = new char[lennew+1];
	memset(result, 0, sizeof(char) * (lennew + 1));
	memcpy(result+1, longer.arr, sizeof(char) * longer.lenwh);
	
	if(shorter.lendeci &gt; longer.lendeci)
		ind_result=lennew;
	else
		ind_result=lennew - (longer.lendeci - shorter.lendeci);
	ind_shorter=shorter.lenwh-1;

	while(ind_shorter &gt;= 0)
	{
		result[ind_result] += shorter.arr[ind_shorter];

		for(i = ind_result; result[i]&gt;=10; i--)
		{
			hi = result[i] / 10;
			result[i] %= 10;
			result[i-1] += hi;
		}
		ind_result--;
		ind_shorter--;
	}

	flag=0;

	if(result[0] != 0)
		flag=1;

	string = new char[lennew + 1 + flag + 1];
	string[point + flag] = &#039;.&#039;;
	i = 1 - flag;
	j=0;

	while(j &lt; lennew + flag +1)
	{
		string[j++] = result[i++] + &#039;0&#039;;
		if(string[j]==&#039;.&#039;)
			j++;
	}
	string[j]=&#039;\0&#039;;

	toreturn=string;
	delete []result;
	delete []string;

	return toreturn;
}

int main()
{
	bigfloat a, b, c;
 	char aa[100], bb[100];

	scanf(&quot;%s %s&quot;,aa,bb);

	a=aa;
	b=bb;

	(a+b).print();
	
	return 0;
}

&lt;/textarea&gt;&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;(a+b)에 리턴한 거 대입하기 전에 소멸자가 호출되잖아 흐흔으ㅡㅏㄴ머흠녘ㅁ&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs11.tistory.com/original/33/tistory/2009/02/15/21/39/49980ce6732c8&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs11.tistory.com/image/33/tistory/2009/02/15/21/39/49980ce6732c8&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;개밥털이.jpg&quot; height=&quot;375&quot; width=&quot;400&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
지금 기분.jpg&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;20분만에 추가한 해결책&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;깊은 복사생성자만 만들어주면 됩니다.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-top: 1px; margin-bottom: 1px; height: 148px; margin-left: 0px; margin-right: 0px; width: 473px; &quot;&gt;
bigfloat::bigfloat(bigfloat &amp;src)
{
	this-&gt;sign    = src.sign;
	this-&gt;lendeci = src.lendeci;
	this-&gt;leninte = src.leninte;
	this-&gt;lenwh   = src.lenwh;
	this-&gt;arr     = new char[this-&gt;lenwh];
	memcpy(this-&gt;arr, src.arr, sizeof(char) * this-&gt;lenwh);
}
&lt;/textarea&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;아 왜, 깊은 복사생성자를 만든다는 게 깊은 대입연산자만 만들었을까.....&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-size: 13px; line-height: 20px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: 굴림; line-height: 20px; &quot;&gt;클래스변수를 리턴하는 함수는 리턴을 위한 클래스를 따로 만든다는 사실 하나 배웠네요.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-size: 13px; line-height: 20px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs13.tistory.com/original/32/tistory/2009/02/15/22/32/4998198a69492&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs13.tistory.com/image/32/tistory/2009/02/15/22/32/4998198a69492&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;삽질.jpg&quot; height=&quot;540&quot; width=&quot;720&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-size: 13px; line-height: 20px;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
오랜만에 유용했던 삽질.jpg&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
ps. 고마워요 &lt;a href=&quot;http://bab2min.tistory.com/&quot; target=&quot;_blank&quot; title=&quot;[http://bab2min.tistory.com/]로 이동합니다.&quot;&gt;적분형님&lt;/a&gt;&lt;/div&gt;
&lt;div&gt;
      PG어 경배합니다.&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-440-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-440-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>C/C++</category>
			<category>소멸자</category>
			<author>　환타</author>
			<guid>http://zfanta.com/440</guid>
			<comments>http://zfanta.com/entry/%EC%95%84-%EC%86%8C%EB%A9%B8%EC%9E%90%EA%B0%80-%EC%82%AC%EB%9E%8C-%EC%9E%A1%EC%95%84%EC%9A%94#entry440comment</comments>
			<pubDate>Sun, 15 Feb 2009 21:39:23 +0900</pubDate>
		</item>
		<item>
			<title>C언어 스도쿠 자동풀이 프로그램</title>
			<link>http://zfanta.com/entry/C%EC%96%B8%EC%96%B4-%EC%8A%A4%EB%8F%84%EC%BF%A0-%EC%9E%90%EB%8F%99%ED%92%80%EC%9D%B4-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8</link>
			<description>&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: -webkit-monospace; font-size: 13px; line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal; &quot;&gt;프로그램 다운로드&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left; &quot;&gt;&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://zfanta.tistory.com/attachment/498ff4bf00d04CN.zip&quot;&gt;&lt;img src=&quot;http://cfs.tistory.com/blog/image/extension/zip.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; 스도쿠.zip&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;button class=&quot;txc-file &quot; style=&quot;background-color: transparent; border-top-style: none; border-right-style: none; border-bottom-style: none; border-left-style: none; border-width: initial; border-color: initial; padding-top: 0px; padding-right: 0px; padding-bottom: 0px; padding-left: 0px; display: block; text-align: left; color: rgb(51, 51, 51); font-size: 12px; font-family: 굴림, gulim, sans-serif; margin-top: 3px; margin-right: 0pt; margin-bottom: 6px; margin-left: 0pt; &quot;&gt;&lt;br /&gt;
&lt;/button&gt;&lt;/div&gt;
&lt;textarea class=&quot;c&quot; name=&quot;code&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 100%; margin-top: 1px; margin-bottom: 1px; height: 2817px; &quot;&gt;
#include &lt;stdio.h&gt;
#include &lt;stdlib.h&gt;
#include &lt;memory.h&gt;


int table[9][9];	//입력한 스도쿠 저장
int completed=0;	//완성된 스도쿠 갯수 저장
FILE *out;

typedef struct This		//빈칸을 가리키는 연결리스트
{
	int y,x;			//y행, x열 좌표
	int cand[10];		//후보숫자 표시배열
	struct This *next;	//다음칸
}blank;

blank *head, *tail;

//끝났는지 확인
int end()
{
	int i,j;

	for(i=0; i&lt;9; i++)
		for(j=0; j&lt;9; j++)
			if(table[i][j]==0)	//빈 칸이 있으면
				return 0;		//0리턴
	return 1;
}

//입력
int input()
{
	int i,j;
	FILE *in=fopen(&quot;table.txt&quot;,&quot;r&quot;);

	if(in==NULL)
		return 0;

	for(i=0; i&lt;9; i++)
		for(j=0; j&lt;9; j++)
			fscanf(in,&quot; %1d&quot;,&amp;table[i][j]);
	fclose(in);
	return 1;
}

//출력
void output()
{
	int i,j;

	printf(&quot;%d 개 완성 더 만들어?\n입력따윈 ㅇ벗어 싫으면 그냥 꺼\n&quot;, ++completed);
	system(&quot;PAUSE&quot;);

	fprintf(out,&quot;%d :\n&quot;, completed);		//완성햇던 스도쿠의 갰수 출력
	for(i=0; i&lt;9; i++, fprintf(out,&quot;\n&quot;))
		for(j=0; j&lt;9; j++)
			fprintf(out,&quot; %d&quot;,table[i][j]);
}

//y열에 쓸 수 있는 후보숫자를 a배열에 표시
void row(int y,int *a)
{
	int i;
	for(i=0; i&lt;9; i++)
		if(table[y][i]!=0)				//0이 아니면(이미 쓴 숫자면)
			a[table[y][i]]=0;			//a[쓰인 숫자]에 0(flase)표시
}

void col(int x,int *a)					//x열에 쓸 수 있는 후보숫자를 a배열에 표시
{
	int i;
	for(i=0; i&lt;9; i++)
		if(table[i][x]!=0)				//0이 아니면(이미 쓴 숫자면)
			a[table[i][x]]=0;			//a[쓰인 숫자]에 0(flase)표시
}

//y행, x열이 포함된 3x3영역 에 쓸 수 있는 후보숫자를 a배열에 표시
void big(int y, int x, int *a)
{
	int i,j;
	for(i=y; i&lt;y+3; i++)
		for(j=x; j&lt;x+3; j++)
			if(table[i][j]!=0)			//0이 아니면(이미 쓴 숫자면)
				a[table[i][j]]=0;		//a[쓰인 숫자]에 0(flase)표시
}

//a, b, c후보숫자 배열의 교집합부분을 구함
void samesame(int *a, int *b, int *c)
{
	int i;
	for(i=1; i&lt;=9;i++)
		a[i]=a[i]&amp;b[i]&amp;c[i];			//셋 다 1이면 1저장, 하나라도 0이면 0저장
}

//y행 x열칸에 쓸 수 있는 후보숫자를 구해 a에 표시
void get_cand(int y, int x, int *a)
{
	int i,j;
	int cand[3][10];
	for(i=0; i&lt;3; i++)					//여기부터
		for(j=0; j&lt;10; j++)				//
			cand[i][j]=1;				//여기까지 1로 초기화
	
	row(y,cand[0]);						//y행에 쓸 수 있는 후보숫자를 cand[0]배열에 저장
	col(x,cand[1]);						//x열에 쓸 수 있는 후보숫자를 cand[1]배열에 저장
	big((y/3)*3,(x/3)*3,cand[2]);		//y행, x열이 포함된 3x3영역 에 쓸 수 있는 후보숫자를 cand[0]배열에 저장
	samesame(cand[0],cand[1],cand[2]);	//위에서 구한 cand[0],cand[1],cand[2]배열의 교집합을 구해 cand[0]에 결과 저장
	memcpy(a,cand[0],sizeof(int)*10);	//a에 cand[0]복사
}

//빈 칸을 가리키는 연결리스트 생성
void set()
{
	int y, x;
	blank *temp;

	temp=(blank *)malloc(sizeof(blank));
	head=(blank *)malloc(sizeof(blank));
	tail=(blank *)malloc(sizeof(blank));
	temp=head;

	for(y=0; y&lt;9; y++)
	{
		for(x=0; x&lt;9; x++)
		{
			if(table[y][x]==0)		//빈 칸이면
			{
				temp-&gt;y=y;			//연결리스트에 저장하고
				temp-&gt;x=x;
				temp-&gt;next=(blank *)malloc(sizeof(blank));
				temp=temp-&gt;next;	//다음 연결리스트를 가리킴
			}
		}
	}
	tail=temp;
}

void solve(blank *node)
{
	int i;

	if(node==tail)		//끝까지 왔으면
	{
		if( end() )		//풀렸으면
			output();	//출력
		return;
	}


	get_cand(node-&gt;y,node-&gt;x,node-&gt;cand);	//후보숫자구함

	for(i=1; i&lt;=9; i++)
	{
		if(node-&gt;cand[i])					//쓸 수 있는 숫자면
		{
			table[node-&gt;y][node-&gt;x]=i;		//쓰고
			solve(node-&gt;next);				//다음칸으로 넘어감
			table[node-&gt;y][node-&gt;x]=0;		//다음 풀이에 영향을 주지 않기 위해 0으로 지움
		}
	}
}


int main()
{
	if( input()== 0)		//입력받고
	{
		printf(&quot;파일 입력 오류&quot;);
		return 0;
	}

	out=fopen(&quot;output.txt&quot;,&quot;w&quot;);
	set();				//빈칸 연결리스트생성
	solve(head);		//백트래킹으로 풀이
	fclose(out);

}
&lt;/textarea&gt;&lt;br /&gt;
&lt;div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;프로그램 다운로드&lt;/span&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://zfanta.tistory.com/attachment/498ff4bf00d04CN.zip&quot;&gt;&lt;img src=&quot;http://cfs.tistory.com/blog/image/extension/zip.gif&quot; alt=&quot;&quot; style=&quot;vertical-align: middle;&quot; /&gt; 스도쿠.zip&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: normal;&quot;&gt;&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
table.txt 파일에 스도쿠랑 똑같이 입력해주시면 됩니다. 빈칸은 0으로&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
입력확인같은건안해요.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
5초이내에 안끝나면 잘못입력했는지 확인해보세요.&lt;/div&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-439-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-439-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=2512122&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>C/C++</category>
			<category>스도쿠</category>
			<category>프로그램</category>
			<author>　환타</author>
			<guid>http://zfanta.com/439</guid>
			<comments>http://zfanta.com/entry/C%EC%96%B8%EC%96%B4-%EC%8A%A4%EB%8F%84%EC%BF%A0-%EC%9E%90%EB%8F%99%ED%92%80%EC%9D%B4-%ED%94%84%EB%A1%9C%EA%B7%B8%EB%9E%A8#entry439comment</comments>
			<pubDate>Mon, 09 Feb 2009 18:20:57 +0900</pubDate>
		</item>
		<item>
			<title>애드센스가 미쳤나</title>
			<link>http://zfanta.com/entry/%EC%95%A0%EB%93%9C%EC%84%BC%EC%8A%A4%EA%B0%80-%EB%AF%B8%EC%B3%A4%EB%82%98</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs11.tistory.com/original/21/tistory/2009/02/08/20/34/498ec3521141c&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs11.tistory.com/image/21/tistory/2009/02/08/20/34/498ec3521141c&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;cr.jpg&quot; height=&quot;459&quot; width=&quot;536&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;URL주소가 적힌 &lt;span class=&quot;Apple-style-span&quot; style=&quot;font-weight: bold;&quot;&gt;이미지&lt;/span&gt;를 보내다니&lt;/div&gt;
&lt;div&gt;이거 직접 타이핑 하신분 계신가요????????????????????????&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-438-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-438-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>뻘소리</category>
			<category>애드센스</category>
			<author>　환타</author>
			<guid>http://zfanta.com/438</guid>
			<comments>http://zfanta.com/entry/%EC%95%A0%EB%93%9C%EC%84%BC%EC%8A%A4%EA%B0%80-%EB%AF%B8%EC%B3%A4%EB%82%98#entry438comment</comments>
			<pubDate>Sun, 08 Feb 2009 20:35:37 +0900</pubDate>
		</item>
		<item>
			<title>트랜스포머2 REVENGE OF FALLEN 고화질 예고편</title>
			<link>http://zfanta.com/entry/%ED%8A%B8%EB%9E%9C%EC%8A%A4%ED%8F%AC%EB%A8%B82-REVENGE-OF-FALLEN-%EA%B3%A0%ED%99%94%EC%A7%88-%EC%98%88%EA%B3%A0%ED%8E%B8</link>
			<description>&lt;script src=&quot;/attachment/498ea1c8094f7DK.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;

&lt;div id=&quot;player&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(0, 0, 0); font-family: Verdana; &quot;&gt;&lt;div id=&quot;player&quot;&gt;
&lt;embed type=&quot;application/x-shockwave-flash&quot; src=&quot;http://zfanta.com/attachment/4968571313825B9.swf&quot; width=&quot;640&quot; height=&quot;372&quot; id=&quot;mpl&quot; name=&quot;mpl&quot; quality=&quot;high&quot; allowscriptaccess=&quot;always&quot; allowfullscreen=&quot;true&quot; flashvars=&quot;&amp;amp;file=http://zfanta.com/attachment/498e98d71d54bEJ.mp4&quot;&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs15.tistory.com/original/35/tistory/2009/02/08/17/37/498e99b740149&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs15.tistory.com/image/35/tistory/2009/02/08/17/37/498e99b740149&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;hu.gif&quot; height=&quot;264&quot; width=&quot;259&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt; &lt;/div&gt;
&lt;div&gt;
이거 꼭 볼거야 ㅎ헣ㅇ엏ㅇ&lt;/div&gt;
&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-437-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-437-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=2504966&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>정보 소식</category>
			<category>영화</category>
			<category>트랜스포머</category>
			<category>트랜스포머2</category>
			<author>　환타</author>
			<guid>http://zfanta.com/437</guid>
			<comments>http://zfanta.com/entry/%ED%8A%B8%EB%9E%9C%EC%8A%A4%ED%8F%AC%EB%A8%B82-REVENGE-OF-FALLEN-%EA%B3%A0%ED%99%94%EC%A7%88-%EC%98%88%EA%B3%A0%ED%8E%B8#entry437comment</comments>
			<pubDate>Sun, 08 Feb 2009 17:39:00 +0900</pubDate>
		</item>
		<item>
			<title>웹페이지 오른쪽 마우스 클릭방지 해제 스크립트</title>
			<link>http://zfanta.com/entry/%EC%9B%B9%ED%8E%98%EC%9D%B4%EC%A7%80-%EC%98%A4%EB%A5%B8%EC%AA%BD-%EB%A7%88%EC%9A%B0%EC%8A%A4-%ED%81%B4%EB%A6%AD%EB%B0%A9%EC%A7%80-%ED%95%B4%EC%A0%9C-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8</link>
			<description>&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51);&quot;&gt;&lt;div&gt;
즐겨찾기에 추가하고 사용하세요.&lt;/div&gt;
&lt;div&gt;이게 제일 확실한 것 같아요&lt;/div&gt;
&lt;div&gt;
&lt;br /&gt;
&lt;/div&gt;
javascript:function r(d){d.oncontextmenu=null;d.onselectstart=null;d.ondragstart=null;d.onkeydown=null;d.onmousedown=null; d.body.oncontextmenu=null;d.body.onselectstart=null;d.body.ondragstart=null;d.body.onkeydown=null; d.body.onmousedown=null;};function unify(w){r(w.document);if(w.frames.length&gt;0){for(var i=0;i&amp;lt;w.frames.length;i++){try{unify(w.frames[i].window);}catch(e){}};};}; unify(self);&lt;/span&gt;&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51);&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51);&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51);&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: rgb(51, 51, 51);&quot;&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/div&gt;

&lt;textarea name=&quot;code&quot; class=&quot;jscript&quot; style=&quot;margin-left: 0px; margin-right: 0px; width: 646px; margin-top: 1px; margin-bottom: 1px; height: 517px; &quot;&gt;
javascript:
function r(d)
{
	d.oncontextmenu=null;
	d.onselectstart=null;
	d.ondragstart=null;
	d.onkeydown=null;
	d.onmousedown=null;
	d.body.oncontextmenu=null;
	d.body.onselectstart=null;
	d.body.ondragstart=null;
	d.body.onkeydown=null;
	d.body.onmousedown=null;
};

function unify(w)
{
	r(w.document);
	if(w.frames.length&gt;0)
	{
		for(var i=0;i&lt;w.frames.length;i++)
		{
			try
			{
				unify(w.frames[i].window);
			}
			catch(e)
			{
			}
		};
	};
}; 
unify(self);
&lt;/textarea&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-436-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-436-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
&lt;div class=&quot;blogger-news-widget&quot; style=&quot;width: 100%; text-align: center&quot;&gt;
		  				&lt;embed src=&quot;http://api.v.daum.net/static/recombox1.swf?nid=2445757&quot; quality=&quot;high&quot; bgcolor=&quot;#ffffff&quot; width=&quot;400&quot; height=&quot;80&quot; type=&quot;application/x-shockwave-flash&quot;&gt;&lt;/embed&gt;&lt;/div&gt;</description>
			<category>정보 소식</category>
			<category>우클릭</category>
			<category>우클릭방지</category>
			<author>　환타</author>
			<guid>http://zfanta.com/436</guid>
			<comments>http://zfanta.com/entry/%EC%9B%B9%ED%8E%98%EC%9D%B4%EC%A7%80-%EC%98%A4%EB%A5%B8%EC%AA%BD-%EB%A7%88%EC%9A%B0%EC%8A%A4-%ED%81%B4%EB%A6%AD%EB%B0%A9%EC%A7%80-%ED%95%B4%EC%A0%9C-%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8#entry436comment</comments>
			<pubDate>Thu, 29 Jan 2009 16:54:18 +0900</pubDate>
		</item>
		<item>
			<title>네이버 영화 알바</title>
			<link>http://zfanta.com/entry/%EB%84%A4%EC%9D%B4%EB%B2%84-%EC%98%81%ED%99%94-%EC%95%8C%EB%B0%94</link>
			<description>&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs12.tistory.com/original/21/tistory/2009/01/27/17/25/497ec4ed42cc1&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs12.tistory.com/image/21/tistory/2009/01/27/17/25/497ec4ed42cc1&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;1.jpg&quot; height=&quot;581&quot; width=&quot;563&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs12.tistory.com/original/34/tistory/2009/01/27/17/25/497ec4ed77342&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs12.tistory.com/image/34/tistory/2009/01/27/17/25/497ec4ed77342&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;2.jpg&quot; height=&quot;548&quot; width=&quot;561&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;table style=&quot;display: inline; border-collapse: collapse&quot;&gt;&lt;tr&gt;&lt;td&gt;&lt;a href=&quot;http://cfs12.tistory.com/original/5/tistory/2009/01/27/17/29/497ec5e369310&quot; rel=&quot;lightbox&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;http://cfs12.tistory.com/image/5/tistory/2009/01/27/17/29/497ec5e369310&quot; alt=&quot;&quot; filemime=&quot;&quot; filename=&quot;3.jpg&quot; height=&quot;396&quot; width=&quot;527&quot;/&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;br /&gt;
&lt;div&gt;&lt;br /&gt;
&lt;/div&gt;&lt;div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div class=&quot;entry-ccl&quot; style=&quot;clear: both; text-align: right; margin-bottom: 10px&quot;&gt;
	&lt;img id=&quot;ccl-icon-435-0&quot; class=&quot;entry-ccl-by&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black01.png&quot; alt=&quot;저작자 표시&quot;/&gt;
	&lt;img id=&quot;ccl-icon-435-1&quot; class=&quot;entry-ccl-nc&quot; src=&quot;http://cfs.tistory.com/static/admin/editor/ccl_black02.png&quot; alt=&quot;비영리&quot;/&gt;
	&lt;!--
	&lt;rdf:RDF xmlns=&quot;http://web.resource.org/cc/&quot; xmlns:dc=&quot;http://purl.org/dc/elements/1.1/&quot; xmlns:rdf=&quot;http://www.w3.org/1999/02/22-rdf-syntax-ns#&quot;&gt;
		&lt;Work rdf:about=&quot;&quot;&gt;
			&lt;license rdf:resource=&quot;http://creativecommons.org/licenses/by-nc-fr/2.0/kr/&quot; /&gt;
		&lt;/Work&gt;
		&lt;License rdf:about=&quot;http://creativecommons.org/licenses/by-nc-fr/&quot;&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Reproduction&quot;/&gt;
			&lt;permits rdf:resource=&quot;http://web.resource.org/cc/Distribution&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Notice&quot;/&gt;
			&lt;requires rdf:resource=&quot;http://web.resource.org/cc/Attribution&quot;/&gt;
			&lt;prohibits rdf:resource=&quot;http://web.resource.org/cc/CommercialUse&quot;/&gt;
		&lt;/License&gt;
	&lt;/rdf:RDF&gt;
	--&gt;
&lt;/div&gt;
</description>
			<category>뻘소리</category>
			<category>네이버</category>
			<category>알바</category>
			<author>　환타</author>
			<guid>http://zfanta.com/435</guid>
			<comments>http://zfanta.com/entry/%EB%84%A4%EC%9D%B4%EB%B2%84-%EC%98%81%ED%99%94-%EC%95%8C%EB%B0%94#entry435comment</comments>
			<pubDate>Tue, 27 Jan 2009 17:30:04 +0900</pubDate>
		</item>
	</channel>
</rss>
