//CPP CODE ======================================
#include <iostream>
using namespace std;
//MAIN ==========================================
int main() {
int t;
cin>>t;
while(t--)
{
int n;
cin>>n;
long int cnt2,cnt0;
cnt2=cnt0=0;
while(n--)
{
long int num;
cin>>num;
if(num==2)
cnt2++;
if(num==0)
cnt0++;
}
long int res2 = ((cnt2*(cnt2-1))/2);
long int res0 = ((cnt0*cnt0-1)/2);
cout<<res0+res2<<"\n";
}
return 0;
}
//END ===========================================
输出:-
运行时错误SIGSTP
为什么我会出错?
这是一个Codechef问题。
问题代码:PLMU
我没有使用数组,所以我怎么获得sigstp