1392A - Omkar Password
28 Jan 2021 — Tags: None
Click to show code.
using namespace std;
int main(void)
{
int t, n, ai;
cin >> t;
while (t--)
{
cin >> n;
set<int> s;
for (int i = 0; i < n; ++i)
{
cin >> ai;
s.insert(ai);
}
if (s.size() == 1)
cout << n << endl;
else
cout << 1 << endl;
}
return 0;
}