摘要: 题解: 第一次: 算法复杂度过高,导致编译超时,需要优化 #include<stdio.h>#include<math.h>int a[100000001] = { 0 };int p(int n) { int t = n, ret = 0; while (t > 0) { t /= 10; ret 阅读全文
posted @ 2020-01-29 12:36 BlueValentines 阅读(120) 评论(0) 推荐(0)