10 条题解

  • 0
    @ 2024-4-7 23:46:20
    #include <bits/stdc++.h>
    using namespace std;
    
    int  main()
    {
    	ios::sync_with_stdio(0);
    	cin.tie(0);
    	cout.tie(0);
    	int n;
    	int o_count = 0;
    	int j_count = 0;
    	while(cin >> n){
    		if(n == 0) break;
    		else{
    			if(n % 2 == 0) o_count++;
    			else j_count += n;
    		}
    	}
    	cout << o_count << endl << j_count;
    	
    	
    	return 0;
     } 
    

    信息

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