编写题解 1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:def yidong(): a = eval(input()) b = list(map(int,input().split())) c = e…… 题解列表 2022年05月08日 0 点赞 0 评论 354 浏览 评分:0.0
编写题解 2351: 信息学奥赛一本通T1439-传送带 摘要:#include<iostream> #include<cstdio> #include<cstdlib> #include<string> #include<cstring> #inclu…… 题解列表 2022年05月08日 0 点赞 0 评论 488 浏览 评分:0.0
编写题解 2347: 信息学奥赛一本通T1435-曲线 摘要:#include<iostream> #include<cstdio> #include<cstdlib> #include<string> #include<cstring> #inclu…… 题解列表 2022年05月08日 0 点赞 0 评论 429 浏览 评分:9.9
Tetrahedrons and Spheres 摘要:#include <cstdio> #include <cstring> #include <cstdlib> #include <cmath> #include <algorithm> #…… 题解列表 2022年05月08日 0 点赞 2 评论 653 浏览 评分:8.7
编写题解 1081: Infinite Dictionaries 摘要:#include<vector> #include<map> #include<string> #include<cstring> #include<cstdio> #include<c…… 题解列表 2022年05月08日 0 点赞 0 评论 506 浏览 评分:6.0
编写题解 2679: 蓝桥杯2022年第十三届省赛真题-拉箱子 摘要:import java.io.StreamTokenizer; import java.io.InputStreamReader; import java.io.BufferedReader; …… 题解列表 2022年05月08日 0 点赞 1 评论 889 浏览 评分:7.6
2175: 信息学奥赛一本通T1250-The Castle 摘要:``` /* 在标注四个方向时一定要注意本题中往下是y轴增加的方向,和我们平时用的数学中的坐标轴不同!!! */ #include #define x first #define…… 题解列表 2022年05月08日 0 点赞 0 评论 551 浏览 评分:8.9
数字逆序输出 题解(简单)(c++) 摘要:解题思路:就是倒过来输出而已。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55];int main(){ for(int …… 题解列表 2022年05月08日 0 点赞 0 评论 297 浏览 评分:0.0
数组插入处理 题解(sort简单易懂) 摘要:解题思路:这题就跟排序差不多,用sort就欧了。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55];int main(){…… 题解列表 2022年05月08日 0 点赞 0 评论 271 浏览 评分:0.0
矩阵对角线求和 题解(c++) 摘要:解题思路:先输入,再直接输出。注意事项:无。参考代码:#include<bits/stdc++.h>using namespace std;int a[55][55];int main(){ for(…… 题解列表 2022年05月08日 0 点赞 0 评论 381 浏览 评分:0.0