PJJ彭彭彭


私信TA

用户名:PJJ1997

访问量:58189

签 名:

试试单纯的暴力能暴到多少题

等  级
排  名 52
经  验 11586
参赛次数 10
文章发表 91
年  龄 20
在职情况 学生
学  校 广东药科大学
专  业 计算机科学与技术

  自我简介:

解题思路:
十重暴力直接搞定




注意事项:





参考代码:

#include <iostream>

#include <deque>

#include <algorithm>

#include <numeric>

#include <iterator>

#include <string>

#include <cmath>

#include <cstdlib>

#include <string.h>

using namespace std;


int main() 

{

int n;

while(cin>>n)

{

for(int a=9;a<12;a++)

{

for(int b=9;b<12;b++)

{

for(int c=9;c<12;c++)

{

for(int d=9;d<12;d++)

{

for(int e=9;e<12;e++)

{

for(int f=9;f<12;f++)

{

for(int g=9;g<12;g++)

{

for(int h=9;h<12;h++)

{

for(int i=9;i<12;i++)

{

for(int j=9;j<12;j++)

{

if(a+b*3+c*pow(3,2)+d*pow(3,3)+e*pow(3,4)+f*pow(3,5)+g*pow(3,6)+h*pow(3,7)+i*pow(3,8)+j*pow(3,9)==n)

{

cout<<a<<" "<<b<<" "<<c<<" "<<d<<" "<<e<<" "<<f<<" "<<g<<" "<<h<<" "<<i<<" "<<j<<endl;

}

}

}

}

}

}

}

}

}

}

}

}

    return 0;

}


 

0.0分

2 人评分

  评论区

6
2023-04-04 15:12:39
  • «
  • 1
  • »