Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
51795 Ryan123 最优子图 C++ 解答错误 10 0 MS 256 KB 379 2022-07-13 14:42:35

Tests(2/20):


#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) { int ans=(n-1)*(n-2)/2; cout<<ans<<'\n'; return 0; } // for(int i=1; i<=n; i++) // for(int j=1; j<=n; j++) // { // // } return 0; }


测评信息: