Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99904 | 黄戈 | 火柴棒等式 | C++ | 解答错误 | 20 | 0 MS | 252 KB | 443 | 2023-08-24 10:16:01 |
#include <bits/stdc++.h> using namespace std; int sz[10]={6,2,5,5,4,5,6,3,7,6}; int p[10][10]; int cnt; int jiafa(int n){ int s=n-4; for(int i=0;i<=9;i++){ for(int j=0;j<=9;j++){ int C=i+j; if(C<=9){ if(s-sz[i]-sz[j]-sz[C]==0&&p[i][j]!=1){ if(i==1&&j==1){ p[i][j]=1; p[j][i]=1; } cnt++; } } } } } int main() { int n; cin>>n; jiafa(n); cout<<cnt; return 0; }