Run ID 作者 问题 语言 测评结果 分数 时间 内存 代码长度 提交时间
99885 modongtao 火柴棒等式 C++ 解答错误 20 0 MS 256 KB 424 2023-08-24 10:01:33

Tests(2/10):


#include <bits/stdc++.h> using namespace std; int a[30] = {6, 2, 5, 5, 4, 5, 6, 3, 7, 6}; int main() { int n, cnt=0; cin >> n; if (n <= 4) { cout << 0 << endl; return 0; } n -= 4; for (int i = 0; i <= 9; i++) { for (int j = 0; j <= 9; j++) { int t = i + j; if (!a[t]) continue; int req = a[i] + a[j] + a[t]; if (req == n) cnt++; } } cout << cnt << endl; return 0; }


测评信息: