Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
81601 | 陈路垚 | circle | C++ | 解答错误 | 9 | 1 MS | 268 KB | 328 | 2023-08-09 16:49:30 |
#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; }