python 2799: 奥运奖牌计数 摘要:参考代码:n = int(input()) arr = [0,0,0] for _ in range(n): str = list(map(int, input().split())) …… 题解列表 2024年03月12日 0 点赞 0 评论 405 浏览 评分:2.0
编写题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:n=int(input())jins=yins=tongs=0for i in range(n): list1=list(map(int,input().split…… 题解列表 2024年02月28日 0 点赞 0 评论 220 浏览 评分:0.0
家人们,这个题解超简单! 摘要:解题思路:将金银铜分别输入三次即可,并先输入比了多少天即可。注意事项:不能把a,b,c的输入写在外面。参考代码:#include <bits/stdc++.h>using namespace std;…… 题解列表 2024年02月23日 0 点赞 1 评论 151 浏览 评分:9.9
编写题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int n,jp=0,yp=0,tp=0,j,y,t…… 题解列表 2024年02月23日 0 点赞 0 评论 123 浏览 评分:0.0
奥运奖牌计数C解 摘要:解题思路:注意事项:很简单的,一步步来就是参考代码:#include<stdio.h>int main(){ int n,i,j,a[20][3],sum1=0,sum2=0,sum3=0; …… 题解列表 2024年02月17日 0 点赞 0 评论 221 浏览 评分:0.0
写题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,sum0=0,sum1=0,sum2=0; scanf("%d",&n); …… 题解列表 2024年02月06日 0 点赞 0 评论 110 浏览 评分:0.0
2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int main(){ int n,sum1=0,sum2=0,sum3=0; …… 题解列表 2024年01月13日 0 点赞 0 评论 165 浏览 评分:0.0
java--study||O.o 摘要:参考代码:import java.util.Scanner; public class Main { public static void main(String[] args) …… 题解列表 2024年01月11日 0 点赞 0 评论 137 浏览 评分:9.9
题解 2799: 奥运奖牌计数 摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int fmax,maxs=0,…… 题解列表 2024年01月11日 0 点赞 0 评论 286 浏览 评分:9.9