Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
100275 赵德明 [HNOI2008]越狱 C++ 内存超限 10 1990 MS 131300 KB 298 2023-08-25 10:38:05

Tests(1/10):


#include<bits/stdc++.h> using namespace std; long long m,n,cnt=0; void stf(long long x,long long last){ if(n+1==x){ return; } for(int i=1;i<=m;i++){ if(i==last){ cnt++; } stf(x+1,i); } return; } int main(){ cin>>m>>n; stf(1,-1); cout<<cnt%100003; return 0; }


测评信息: