10 条题解

  • 0
    @ 2024-4-7 8:44:41
    #include<bits/stdc++.h>
    using namespace std;
    typedef long long LL;
    
    int main()
    {
    	ios::sync_with_stdio(0);
    	cin.tie(0);
    	cout.tie(0);
    	int sum=0,num=0;
    	int n;
    	while(cin>>n,n!=0)
    	{
    		if(n&1)sum+=n;
    		else num++;
    	}
    	cout<<num<<endl<<sum<<endl;
    	return 0;
    }
    

    信息

    ID
    8
    时间
    1000ms
    内存
    256MiB
    难度
    5
    标签
    递交数
    1479
    已通过
    574
    上传者