n皇后问题
n皇后
https://ac.nowcoder.com/acm/contest/17106/K
#include <bits/stdc++.h> using namespace std; const int N = 1e5+10; long long res[N]; const int M = 1e9+7; int main() { int n,t; res[1] = 1; for(int i=2;i<=N-10;i++) res[i]=res[i-1]*i%M; cin>>t; while(t--) { cin>>n; printf("%lld\n",res[n]); } return 0; }
指尖的温柔梦 文章被收录于专栏
每天在博客写一些题解,为了思路更加清晰。