Volume CI @ 07 April 2010, “No Comments”
- 문제 링크 : http://uva.onlinejudge.org/external/101/10196.html
- 응시 유저 수 : 2805
- 해결한 유저 비율 :76.11%
![]()
![]()
![]()
![]()
![]()
////////////////////////////////////////////////////////////////////////////////
// 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