1038: [编程入门]宏定义练习之三角形面积 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月13日 0 点赞 0 评论 256 浏览 评分:0.0
1037: [编程入门]宏定义的练习 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月13日 0 点赞 0 评论 358 浏览 评分:0.0
如果不用两个map怎么办? 摘要:解题思路:注意事项:参考代码:s=list(map(int,input().strip().split()))x=list(map(int,input().strip().split()))coun=…… 题解列表 2022年05月13日 0 点赞 0 评论 315 浏览 评分:0.0
蓝桥杯2015年第六届真题-切开字符串 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int n,A,B,max_ans=-1;string s,a,b;int chec…… 题解列表 2022年05月13日 0 点赞 0 评论 567 浏览 评分:0.0
输出九九乘法表 摘要:解题思路:注意事项:参考代码:for i in range(1,10): for j in range(1,i+1): x=j*i if x<10: …… 题解列表 2022年05月13日 0 点赞 0 评论 337 浏览 评分:0.0
前缀和-青蛙过河 摘要:```cpp #include using namespace std; typedef long long ll; const int N=1e5+5; ll n,x; ll sum[N…… 题解列表 2022年05月13日 0 点赞 2 评论 1139 浏览 评分:7.4
数学题-GCD(c++) 摘要:数学题,不是很懂,先放着 ```cpp #include using namespace std; typedef long long ll; int main() { ll a…… 题解列表 2022年05月13日 0 点赞 0 评论 1644 浏览 评分:7.0
小南解题---矩阵加法 摘要:'''zgn94615:01 2022/5/13'''#输入a,b=map(int,input().strip().split())A=[list(ma…… 题解列表 2022年05月13日 0 点赞 0 评论 408 浏览 评分:0.0
动态规划-选数异或 摘要:动态规划求两数异或等于x的区间左端最大值 ```cpp #include #include using namespace std; typedef long long ll; con…… 题解列表 2022年05月13日 0 点赞 3 评论 2104 浏览 评分:6.7
利用<math.h>,pow()函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ int i; int l,m,n; for(i=100;i<1…… 题解列表 2022年05月13日 0 点赞 0 评论 444 浏览 评分:0.0