不容易系列2-题解(C语言代码) 摘要:```c #pragma warning(disable:4996) #include #include #include #include int main() { …… 题解列表 2020年02月13日 0 点赞 0 评论 414 浏览 评分:0.0
不容易系列2 (C++代码)(全排列) 摘要:解题思路:注意事项:参考代码:#include<stdio.h> #include<algorithm> using namespace std; int main() { int…… 题解列表 2019年02月13日 0 点赞 0 评论 515 浏览 评分:0.0
不容易系列2 (C语言代码)递推 摘要:参考代码:AC(递推,思路借鉴题号1117,“递推”)#include <stdio.h> int main() { int i, n; long long res[21]…… 题解列表 2019年01月29日 0 点赞 0 评论 478 浏览 评分:0.0
不容易系列2 (Java代码) 摘要:解题思路:注意事项:参考代码: import java.math.BigInteger; import java.util.*; import java.util.regex.Matcher; …… 题解列表 2019年01月13日 0 点赞 0 评论 570 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>long long int jiecheng(long long int n);long long int zhongshu(long…… 题解列表 2018年07月26日 0 点赞 0 评论 676 浏览 评分:0.0
不容易系列2 (Java代码) 摘要:解题思路:注意事项:参考代码:public class 不容易系列2 { //满足条件的计数器 public static int count = 0; /** * 全排列算法 …… 题解列表 2018年05月16日 0 点赞 0 评论 938 浏览 评分:0.0
不容易系列2 (C++代码) 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int main() { int n; while(cin>>n) { …… 题解列表 2018年04月22日 1 点赞 0 评论 823 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(void){ int i, n; long long num[21]; while (scanf("%d", &n)…… 题解列表 2018年03月27日 0 点赞 0 评论 759 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int n,sum;int a[21],b[21];void dfs(int k){ int i,j,l,p; if(k>n) { s…… 题解列表 2018年02月09日 0 点赞 0 评论 581 浏览 评分:0.0
不容易系列2 (C语言代码) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int f(int n){ if(n==2) return 1; if(n==3) return 2; else re…… 题解列表 2017年09月04日 0 点赞 0 评论 837 浏览 评分:0.0