#include<iostream> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int T; cin >> T; while (T--) { int map[32] = { 0 }; // 1的个数有可能有0-31 int n; cin >> n; for (int i = 0; i < n; i++) { ...