3 条题解
-
0
//模板 #include <bits/stdc++.h> using namespace std; #define endl '\n' #define INF 0x3f3f3f3f3f3f3f3f #define int long long signed main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int n , cnt = 0 , ans = 0; while(cin >> n) { if(n % 2 == 0) { cnt++; } else{ ans += n; } } cout << cnt << endl << ans ; return 0; }
信息
- ID
- 9
- 时间
- 1000ms
- 内存
- 256MiB
- 难度
- 3
- 标签
- 递交数
- 866
- 已通过
- 440
- 上传者