摘要: 题意:找出第index 个回文数。这题是有规律的,即list[]数组。其次,对于某个 index 可以先精确到 位数 pos,然后在进行分析。1a 1 #include 2 #include 3 #include 4 typedef __int64 int64; 5 int64 list[ 24 ]; 6 int ans[ 240 ]; 7 8 void init(){ 9 list[0] = 0; 10 list[1] = 9; 11 list[2] = 9; 12 list[3] = 90; 13 list[4] = 90; 14... 阅读全文
posted @ 2013-07-23 17:44 xxx0624 阅读(275) 评论(0) 推荐(0) 编辑