牛客440904392号
牛客440904392号
全部文章
分类
归档
标签
去牛客网
登录
/
注册
牛客440904392号的博客
全部文章
(共139篇)
题解 | #统计单词#Python一行
print(*(len(word) for word in input().rstrip('.').split()))
2024-10-06
1
40
直接把系数加1000映射到数组下标就行
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[] ...
2024-10-06
1
41
题解 | #树查找#按下标输出或者递归建树加递归遍历
//C++版代码 #include <iostream> #include <cmath> using namespace std; int main() { int n; cin >> n; int nums[n + 1]; fo...
2024-10-06
1
44
题解 | #打牌#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); String...
2024-10-06
1
38
题解 | #查找第K小数#
input() l = list(sorted(set(map(int, input().split())))) print(l[int(input()) - 1])
2024-10-06
1
45
顺时针旋转行翻转加转置,逆时针旋转列翻转加转置。
#include <iostream> #include <vector> using namespace std; void inputMatrix(vector<vector<int>> &matrix) { for (int i ...
2024-10-06
1
39
题解 | #C翻转#
import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int[][...
2024-10-06
1
39
题解 | #EXCEL排序#定义个结构体再按要求排序就行
#include <iostream> #include <algorithm> using namespace std; struct Student { string id, name; int score; }; int main() { int...
2024-10-06
1
49
题解 | #简单计算器#Python一行
print('%.2f' % eval(input()))
2024-10-05
1
38
题解 | #二叉搜索树#先递归建树,再递归判断。
#include <iostream> using namespace std; struct TreeNode { char val; TreeNode *left; TreeNode *right; TreeNode(char c) : val(c),...
2024-10-05
1
44
首页
上一页
1
2
3
4
5
6
7
8
9
10
下一页
末页