#include<iostream> #include<cstdlib> #include<vector> using namespace std; bool is_in(std::vector<long long>&vec, long long x) { for (std::vector<long long>::iterator it = vec.begin() ; it != vec.end(); ++it) { if ((*it) == x) { return true; } } return false; } void fibonacci(int n, std::vector<long long>&v) { long long a = 0, b = 1; for(int i=0;i<n;i++) { v.push_back(b); // cout<<b<<" "; b += a; //pod zmienną b przypisujemy wyraz następny czyli a+b a = b-a; //pod zmienną a przypisujemy wartość zmiennej b } } int main() { std::vector<long long>vec; fibonacci(40, vec); int x = 1; for (std::vector<long long>::iterator it = vec.begin() ; it != vec.end(); ++it) { x++; for(int i=x;i<=40;i++) { vec.push_back((*it)*(vec.at(i))); } } long long tab[10]; int ile; cin >> ile; for (int iter = 0; iter<ile;iter++) { cin >> tab[iter]; } for (int iter = 0; iter<ile;iter++) { if (is_in(vec, tab[iter])) cout << "TAK" << endl; else cout << "NIE" << endl; } return 0; }
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | #include<iostream> #include<cstdlib> #include<vector> using namespace std; bool is_in(std::vector<long long>&vec, long long x) { for (std::vector<long long>::iterator it = vec.begin() ; it != vec.end(); ++it) { if ((*it) == x) { return true; } } return false; } void fibonacci(int n, std::vector<long long>&v) { long long a = 0, b = 1; for(int i=0;i<n;i++) { v.push_back(b); // cout<<b<<" "; b += a; //pod zmienną b przypisujemy wyraz następny czyli a+b a = b-a; //pod zmienną a przypisujemy wartość zmiennej b } } int main() { std::vector<long long>vec; fibonacci(40, vec); int x = 1; for (std::vector<long long>::iterator it = vec.begin() ; it != vec.end(); ++it) { x++; for(int i=x;i<=40;i++) { vec.push_back((*it)*(vec.at(i))); } } long long tab[10]; int ile; cin >> ile; for (int iter = 0; iter<ile;iter++) { cin >> tab[iter]; } for (int iter = 0; iter<ile;iter++) { if (is_in(vec, tab[iter])) cout << "TAK" << endl; else cout << "NIE" << endl; } return 0; } |