Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
51792 | Ryan123 | 最优子图 | C++ | 编译错误 | 0 | 0 MS | 0 KB | 360 | 2022-07-13 14:41:35 |
#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; }