Files
python/LuoGu/RuMen/P2181.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

11 lines
291 B
C++

#include <bits/stdc++.h>
using namespace std;
//公式!重要的是公式!
int main() {
ios::sync_with_stdio(false); //读入输出优化的强迫症
unsigned long long n;
cin >> n;
cout << (n * (n - 1) / 2 * (n - 2) / 3 * (n - 3) / 4) << endl;
return 0;
}