题解 2849: 石头剪子布 摘要: #include using namespace std; const int N=110; int a[N][N],sum; int main() {…… 题解列表 2023年12月18日 0 点赞 0 评论 349 浏览 评分:2.0
2849: 石头剪子布 摘要:``` #include using namespace std; const int N=110; int main(){ int T; cin>>T; while(T--){ …… 题解列表 2023年12月18日 0 点赞 0 评论 477 浏览 评分:2.0
最长最短单词 摘要:解题思路:注意事项:参考代码:myList=input().split()mydict= {}newList=[]for temp in myList: newList.append(len(t…… 题解列表 2023年12月20日 0 点赞 0 评论 443 浏览 评分:2.0
java真的很简单 摘要:import java.util.Scanner; import java.util.Arrays; public class Main { public static void main…… 题解列表 2023年12月20日 0 点赞 0 评论 331 浏览 评分:2.0
1231: 杨辉三角 摘要:``` #include using namespace std; const int N=110; int a[N][N]; int main(){ int n; while(cin…… 题解列表 2023年12月22日 0 点赞 0 评论 325 浏览 评分:2.0
2784: 收集瓶盖赢大奖 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int x,y; cin >> x >>y ;…… 题解列表 2023年12月23日 0 点赞 0 评论 334 浏览 评分:2.0
题解 2857: 加密的病历单 摘要: #include using namespace std; char a[200],b[200]; int n,m; int main(){ …… 题解列表 2024年01月03日 0 点赞 0 评论 403 浏览 评分:2.0
python版:错误答案,仅供参考 摘要:解题思路:注意事项:参考代码:def if_jolly(sequence): n=sequence[0] differences=set() for i in range(1,n):…… 题解列表 2024年01月06日 0 点赞 0 评论 384 浏览 评分:2.0
买笔买笔30083008 摘要:解题思路:#include <iostream>using namespace std;int main(int argc, char** argv){int x,y,a,b,c;cin>>x;c=x…… 题解列表 2024年01月07日 0 点赞 0 评论 272 浏览 评分:2.0
循环入门练习1 1764 摘要:解题思路:#include <iostream>using namespace std;int main(){ int sum =0; for(int i=1; i<=1000;i++)…… 题解列表 2024年01月08日 0 点赞 0 评论 321 浏览 评分:2.0