10 条题解

  • 0
    @ 2024-4-5 13:39:39
    //模拟题
    #include <iostream>
    using namespace std;
    int a,ans,n;
    int main()
    {
      ios::sync_with_stdio(0);
      cin.tie(0);
      cout.tie(0);
      while(cin>>a)
      {
        if(a==0)break;
        if(a%2==0){
          n++;
        }
        else
        ans+=a;
      }
      cout<<n<<"\n"<<ans;
      return 0;
    }
    ``
    

    信息

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