提交时间:2023-08-09 18:12:22

运行 ID: 81675

#include<bits/stdc++.h> using namespace std; int main(){ long long t,n; cin>>t>>n; if(t==1){ cout<<n*(n-1)/2; }else if(t==2){ cout<<n*(n-1)/2*(n-2)/3*(n-3)/4; }else if(t==3){ cout<<n*(n-1)/2+n*(n-1)/2*(n-2)/3*(n-3)/4+1; } return 0; }