阿里9.4编程第一题,排列组合,只AC了0.9,请各位大佬帮忙看看什么问题 #include <bits/stdc++.h> using namespace std; long long c(int n, int k){ long long tmp = 1; for (int i = 0; i < k; ++i) { tmp *= n-i; tmp /= i+1; } return tmp; } int main() { // ios::sync_with_stdio(false); // ...