题目链接 https://codeforces.com/problemset/problem/1419/C 解题思路 总共三种情况0,1,2分情况讨论一下。1.全都是x时,02.存在x或全部之和为n*x时,13.其他情况,2 代码 // 废物代码 #include<bits/stdc++.h> using namespace std; const int N = 1e3+10; int T, a[N], f, sum, n, x, ff; int main() { cin>>T; while(T--) { f = 0; ...