提交时间:2022-07-13 14:41:35

运行 ID: 51792

#include <bits/stdc++.h> using namespace std; int n,k; int w[501][501]; bool b; int main() { //freopen("sub.in","r",stdin); //freopen("sub.out","w",stdout); scanf("%d%d",&n,&k); if(k==1) { cout<<(n-1)(n-2)/2<<'\n'; return 0; } // for(int i=1; i<=n; i++) // for(int j=1; j<=n; j++) // { // // } return 0; }