粉詹眉
粉詹眉
全部文章
分类
归档
标签
去牛客网
登录
/
注册
粉詹眉的博客
全部文章
(共128篇)
题解 | #WERTYU#
#include <iostream> #include <map> using namespace std; int main() { string str; getline(cin,str); string temp="`1234567...
2024-02-22
0
174
题解 | #String Matching#
#include <iostream> using namespace std; int main() { string t,p; cin>>t>>p; int res=0; for(int s=0;s<=t.size()-...
2024-02-22
0
184
题解 | #简单密码#
#include <cctype> #include <cstdio> #include <iostream> using namespace std; void convert(string &str){ for(int i=0;i<st...
2024-02-22
0
139
题解 | #加减乘除#
#include <iostream> using namespace std; int main() { int a; while(cin>>a){ getchar(); char c; cin>>...
2024-02-22
0
172
题解 | #鸡兔同笼#
#include <iostream> using namespace std; int main() { int n; while (cin >> n) { if (n % 2) cout << 0 << "...
2024-02-22
0
152
题解 | #鸡兔同笼#
import java.util.Scanner; // 注意类名必须为 Main, 不要有任何 package xxx 信息 public class Main { public static void main(String[] args) { Scanner sc =...
2024-02-22
0
136
题解 | #八皇后#
#include <iostream> #include <vector> using namespace std; const int N=9; int a[N][N]; bool vis_col[N]; vector<vector<int>> ...
2024-02-22
0
187
题解 | #八皇后#
#include <iostream> #include <vector> using namespace std; const int N=9; int a[N][N]; bool vis_col[N],vis[N][N]; vector<vector<in...
2024-02-22
0
157
题解 | #二叉树#
#include <iostream> using namespace std; int birnaryTree(int m,int n){ if(m<=n){ return 1+birnaryTree(2*m, n)+birnaryTree(2*m+1,...
2024-02-21
0
153
题解 | #数字求和#
#include <iostream> using namespace std; int main() { int a; cin>>a; int k=5; int sum=0; while(k--){ int x; ...
2024-02-21
0
175
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页