Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
20777 | LeoWang | 猜算式(蓝桥杯真题) | C++ | 通过 | 2 MS | 256 KB | 776 | 2023-06-20 08:32:03 |
#include<iostream> #include<algorithm> #include<cstdio> #include<queue> #include<stack> #include<cstring> using namespace std; int t[10]; void chai(int x){ while(x){ t[x%10]++; x/=10; } return; } int main(){ for(int a=10;a<=99;a++){ for(int b=a;b<=99;b++){ for(int c=10;c<=99;c++){ int d=a*b/c; if(c*d!=a*b)continue; memset(t,0,sizeof(t)); chai(a);chai(b);chai(c);chai(d); if(t[0]>0)continue; bool flag=true; for(int i=1;i<=9;i++){ if(t[i]==0||t[i]>1){ flag=false; break; } } if(flag){ printf("%d x %d = %d x %d\n",a,b,c,d); } } } } return 0; } /* #include<cstdio> freopen("文件名.in","r",stdin); freopen("文件名.out","w",stdout); */