摘要: include<bits/stdc++.h> using namespace std; int h[100005],m[100005],a[100005]; int main(){ int n,H,M; cin>>n>>H>>M; a[0]=H60+M; for(int i=1;i<=n;i++){ 阅读全文
posted @ 2024-12-02 20:03 浩瀚宇宙星晨 阅读(2) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; long long cnt[100010]; // cnt[i]代表质因数i的幂次 int main() { int n; cin>>n; for(int i=1; i<=n; i++){ cnt[i]=0; 阅读全文
posted @ 2024-12-02 20:02 浩瀚宇宙星晨 阅读(4) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int main() { int t; cin>>t; int c; cin>>c; int sum=0; long long ans=0; for (int i=1; i<=t; i++) { int x; 阅读全文
posted @ 2024-12-02 20:00 浩瀚宇宙星晨 阅读(3) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; long long t, m; int main( ) { cin >> t >> m; if (t<=m) { cout << (m-t)/2+1; } else { cout << 0; } return 阅读全文
posted @ 2024-11-22 13:28 浩瀚宇宙星晨 阅读(5) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int maxx, a, b, c; int main( ) { cin >> a; b=10; c=3; while(b!=a) { if (c1||c2) { b+=7; } b--; c++; c%=7; 阅读全文
posted @ 2024-11-19 21:45 浩瀚宇宙星晨 阅读(4) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int n, m, k, a[1000005], b[1000005], sum, t, l, r, mid; int main( ) { cin >> n >> m >> k; for (int i=1;i< 阅读全文
posted @ 2024-11-18 21:13 浩瀚宇宙星晨 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 这个是具体的代码,孩子的代码问题在子矩阵的判断有问题。 就是这几行,没有具体实现。 原思路代码块 include <bits/stdc++.h> using namespace std; int n, a, b, m[105][105]; int main() { cin >> n; for (in 阅读全文
posted @ 2024-11-10 22:02 浩瀚宇宙星晨 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 2133: 练4.4 牛吃牧草 2132: 练4.3 3个连续数 一本通1068:与指定数字相同的数的个数 【printf和scanf的非常正常用法】 一本通 1071:菲波那契数 一本通 1069:乘方计算 2146: 【例7.2】与圆相关的计算 2153: 【例8.3】计算球的体积 球的体积公式 阅读全文
posted @ 2024-11-10 19:02 浩瀚宇宙星晨 阅读(3) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int n, m; long long sum=1, k; int main( ) { cin >> n >> m >> k; for (int i=1;i<=k;i++) { n*=10; sum=n/m; 阅读全文
posted @ 2024-11-10 18:58 浩瀚宇宙星晨 阅读(8) 评论(0) 推荐(0) 编辑
摘要: include <bits/stdc++.h> using namespace std; int n; double e=1, cj=1; int main( ) { cin >> n; for (int i=1;i<=n;i++) { cj*=i; e+=e+1/cj; } cout << fix 阅读全文
posted @ 2024-11-07 21:18 浩瀚宇宙星晨 阅读(8) 评论(0) 推荐(0) 编辑