Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
100083 | 梁颢城 | 火柴棒等式 | C++ | 解答错误 | 10 | 0 MS | 256 KB | 384 | 2023-08-24 16:39:58 |
#include<bits/stdc++.h> using namespace std; int main(){ int a[10] = {6,2,5,5,4,5,6,3,7,6}; int n; scanf("%d",&n); int cnt = 0; for(int i = 0;i < 10;i++){ for(int j = 0;j < 10;j++){ if(a[i] + a[j] + a[i+j] == n-4){ cnt++; }else if(a[i] + a[j] + a[(i+j)%10] + a[(i+j)/10] == n-4){ cnt++; } } } printf("%d",cnt); return 0; }