Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
99921 | liuxinyi | 火柴棒等式 | C++ | 通过 | 100 | 1 MS | 272 KB | 443 | 2023-08-24 10:27:20 |
#include<iostream> #include<cstdio> #define ll long long using namespace std; const int N=1e6+10; ll used[]={6,2,5,5,4,5,6,3,7,6}; ll cnt=0,st[N]={6},n; int main() { std::cin>>n; n-=4; for(int i=1;i<2000;i++) { ll j=i; while(j>=1) { st[i]+=used[j%10]; j/=10; } } for(int i=0;i<=1000;i++) for(int j=0;j<=1000;j++) if(st[i]+st[j]+st[i+j]==n) cnt++; std::cout<<cnt; puts(""); return 0; }