Volume CI @ 07 April 2010, “No Comments”

by-nc-sa
Volume C @ 06 October 2009, “No Comments”

by-nc-sa
Volume CII @ 05 October 2009, “No Comments”

by-nc-sa

by-nc-sa
Tags:
Volume CI @ 29 January 2009, “No Comments”

by-nc-sa
Tags:
Volume CI @ 13 January 2009, “No Comments”

by-nc-sa
Tags:
Volume I @ 02 January 2009, “No Comments”


by-nc-sa
Tags:
출발점 @ 01 January 2009, “No Comments”
////////////////////////////////////////////////////////////////////////////////
// UVa Online Judge(http://uva.onlinejudge.org/)
//
// problem : number problem (http://)
//
// - OOP, Unit test, STL을 남발한다.
// - 속도보다는 읽기 좋게 작성한다.
//
// This file is licenced under a Creative Commons license:
// http://creativecommons.org/licenses/by-nc-sa/2.0/kr/
////////////////////////////////////////////2009. 00. 00 ohyecloudy at gmail.com
//////////////////////////////////////////////////////http://ohyecloudy.com/algo

#ifdef ONLINE_JUDGE
#   define UNIT_TEST 0
#else
#   define UNIT_TEST 1
#endif  

#if UNIT_TEST
#	include <gtest/gtest.h>
#endif

//#############################################################################V
// submit code

//#############################################################################A

#if UNIT_TEST
//#############################################################################V
// test code

//#############################################################################A
int main(int argc, char **argv)
{
	testing::InitGoogleTest(&argc, argv);
	return RUN_ALL_TESTS();
}
#else
int main()
{
	//#########################################################################V
	// submit code

	//#########################################################################A
	return 0;
}
#endif

 

by-nc-sa