提交时间:2023-08-09 16:49:30

运行 ID: 81601

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