A题这段二分代码为什么通过率是88.46% 求大佬赐教 #include<bits/stdc++.h> using namespace std; int n; int a[1005]; int sum; int judge(int mid) { //cout<<mid<<endl; if(sum%mid) return 0; int temp=sum/mid; int temp2=0; for(int i=1;i<=n;i++) { temp2+=a[i]; ...