上一页 1 2 3 4 5 6 ··· 32 下一页
摘要: 思路分析 1. 定义十全数:十全数是指一个数的各位数字之和等于10的数。 2. 输入处理:程序首先读取一个正整数k,表示需要找到的第k个十全数。 枚举正整数:从1开始,逐个检查每个正整数是否是十全数。 4. 检查函数check: 计算一个数n的各位数字之和。 如果和等于10,返回true,否则返回f 阅读全文
posted @ 2024-10-17 16:49 CRt0729 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 思路分析 1. 输入处理:程序首先读取地毯的数量n。然后依次读取每张地毯的信息,包括左下角坐标(a, b)和尺寸(c, d),并存储在数组中。 查询点的输入:读取要查询的点的坐标(x, y)。 3. 检查覆盖: 从最后一张地毯开始,依次向前检查每张地毯是否覆盖点(x, y)。 检查条件是:x在地毯的 阅读全文
posted @ 2024-10-17 16:47 CRt0729 阅读(1) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e4+10, inf = 0x3f3f3f3f; int a[N], vis[2 * N]; // vis数组用于标记哪些数在集合中 i 阅读全文
posted @ 2024-10-17 16:40 CRt0729 阅读(5) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e3+10, inf = 0x3f3f3f3f; int a[N], vis[N]; int n, ans; // 计算函数:根据运算符 阅读全文
posted @ 2024-10-17 16:36 CRt0729 阅读(10) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int main() { int a, b; cin >> a >> b; // 读取输入的两个整数A和I int k = a * b; // 初始化k为A和I的乘积 while (1) { // 无限循环,直 阅读全文
posted @ 2024-10-17 16:34 CRt0729 阅读(15) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e3+10,inf = 0x3f3f3f3f; int main() { int x,y,z,n,m; cin >> x >> y >> 阅读全文
posted @ 2024-10-17 16:32 CRt0729 阅读(2) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> #define ll long long using namespace std; const int N = 1e3+10; int c; bool check(int a,int b) { if(a + b <= c) return 0; //不构 阅读全文
posted @ 2024-10-17 16:31 CRt0729 阅读(13) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> #define ll long long using namespace std; const int N = 1e3+10; bool check(int x) { int sum = 0,m = x; //分割m,然后计算次方和sum while( 阅读全文
posted @ 2024-10-17 16:28 CRt0729 阅读(12) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> #define ll long long using namespace std; const int N = 1e3+10; int main() { for(int i = 100; i <= 999; i++) { //判断i是水仙花数 int 阅读全文
posted @ 2024-10-17 16:25 CRt0729 阅读(3) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; int main() { int a,b,maxx = 0,ans; //maxx是最大上课时间,ans是最不开心的一天 for(int i = 1; i <= 7; i++) { cin >> a >> b; 阅读全文
posted @ 2024-10-17 16:24 CRt0729 阅读(11) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 32 下一页