Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
81694 吴思睿 circle C++ 解答错误 3 0 MS 252 KB 422 2023-08-09 20:58:58

Tests(1/34):


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


测评信息: