Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
81678 王籽易 circle C++ 通过 102 0 MS 260 KB 245 2023-08-09 19:26:39

Tests(34/34):


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


测评信息: