Information
- ID
- 355
- Time
- 1000ms
- Memory
- 16MiB
- Difficulty
- 6
- Tags
- # Submissions
- 127
- Accepted
- 40
- Uploaded By
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
int main()
{
for(int i = 1 ;i <= 20 ;i++){
for(int j = 1 ;j <= 33 ;j++){
for(int k = 3 ;k <= 300 ;k=k+3){
if(i+j+k == 100 && i*5+j*3+k/3 == 100){
cout << i << " " << j << " " << k << endl;
}
}
}
}
return 0;
}
By signing up a 追梦算法网 universal account, you can submit code and join discussions in all online judging services provided by us.