题解 2799: 奥运奖牌计数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

最普通的解题方法

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){    int i,a,b,c,d,e=0,f=0,g=0;    scanf("%d",&a);    whil……

奥运奖牌计数

摘要:解题思路:注意事项:参考代码:n = int(input())x = 0y = 0z = 0for i in range(n):    a,b,c = map(int, input().split()……

2799 奥运奖牌计数

摘要:解题思路:    #include <bits/stdc++.h>    using namespace std;    int main()    {       int n,sum1=0, sum……

python 2799: 奥运奖牌计数

摘要:参考代码:n = int(input()) arr = [0,0,0] for _ in range(n):     str = list(map(int, input().split())) ……