Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
173593 麦安妍B班 组合数的高精度算法 C++ 无测评数据 0 0 MS 0 KB 198 2024-08-20 21:53:41

Tests(0/0):


#include<bits/stdc++.h> using namespace std; int main(){ int a,b,x=1,y,i; unsigned long long s=1; cin>>a>>b; y=a; for(i=1;i<b;i++){ s=s*y; s=s/x; y--; x++; } cout<<s; }