数位dp#2491: 信息学奥赛一本通T1587-Windy 数(C++) 摘要:``` #include using namespace std; const int N =11; ///一共有I位,最高位是J的windy数的个数 int f[N][10];…… 题解列表 2024年12月30日 1 点赞 0 评论 1173 浏览 评分:0.0
点进来你会后悔的 摘要:#include<stdio.h> int judge(int n); int main(void) { int n; scanf("%d", &n); if(ju…… 题解列表 2024年12月30日 4 点赞 0 评论 1420 浏览 评分:10.0
简简单单的循环 摘要:解题思路:注意事项:参考代码:#include<stdio.h> int main(void) { int n, i = 0; scanf("%d", &n); in…… 题解列表 2024年12月30日 1 点赞 0 评论 1000 浏览 评分:0.0
简单的回文数 摘要:#include<stdio.h> int judge(int n); int main(void) { int i = 95859, count = 0; while(co…… 题解列表 2024年12月30日 1 点赞 0 评论 925 浏览 评分:10.0
数位dp #2490: 信息学奥赛一本通T1586-数字游戏(C++) 看注释 摘要:``` #include using namespace std; const int N =15; //I位数字且最高位是J的不降数的个数 int f[N][N]; vo…… 题解列表 2024年12月30日 2 点赞 0 评论 603 浏览 评分:10.0
非常ez,随便看懂 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int m, n; scanf("%d %d", &m, &n); int a[…… 题解列表 2024年12月29日 0 点赞 0 评论 846 浏览 评分:0.0
简单的递归 摘要:#include<stdio.h> int ans(int n); int main(void) { int n; scanf("%d",&n); printf("…… 题解列表 2024年12月29日 0 点赞 0 评论 398 浏览 评分:0.0
本蒟蒻来写题解 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<unordered_map>#include<string>#include<climits> // 用于 CHAR…… 题解列表 2024年12月29日 0 点赞 0 评论 216 浏览 评分:0.0
无敌很寂寞啊 摘要:#include<stdio.h> int main(void) { int i; int a, b; for(i = 1000; i <= 10000; i++) …… 题解列表 2024年12月29日 0 点赞 0 评论 155 浏览 评分:0.0
这题是真简单啊 摘要:#include<stdio.h> int main(void) { int n, a, now = 0; scanf("%d %d", &a, &n); int i…… 题解列表 2024年12月29日 0 点赞 0 评论 259 浏览 评分:0.0