// yukicodr // No.1644 //二次元可変配列 //vector > mass; //vector > memo; //vector memo; //#include "stdafx.h" #include #include #include //list #include //queue #include //連想コンテナ(要素が自動でソートされる)、要素1つ(Key)、keyの重複ない、O(logN) #include //連想コンテナ(要素が自動でソートされる)、要素2つ(Key,data)、keyの重複ない、dataは重複あり、O(logN) #include //hash、O(1) #include //hash、O(1) #include #include #include #include #include //#include using namespace std; #define FOR(x,to) for(x=0;x(b)?(a):(b)) #define FMIN(a,b) ((a)<(b)?(a):(b)) #define FCEIL(a,b) ((a)+(b)-1)/(b) typedef unsigned long long ULL; typedef signed long long SLL; queue _queue; //昇順 int compare_up(const int * a, const int *b) { if (*a > *b) return (1); else if (*a < *b) return (-1); return (0); } //降順 int compare_down(const int * a, const int *b) { if (*a > *b) return (-1); else if (*a < *b) return (1); return (0); } int par[3005 * 3005]; //ルートの番号 int _rank[3005 * 3005]; //木の高さ int flag[3005 * 3005]; // 経路圧縮 // 直列で連結しているような木はすべて直接ルートにつなぐようにする int _find(int x) { if (x == par[x]) { //cout << "x=" << x << endl; return x; } else { int a; //cout << "in->" << endl; a = _find(par[x]); //cout << "<-out" << endl; //cout << "x=" << x << ",par[x]=" << par[x] << ",a=" << a << endl; //ルートを更新(圧縮) par[x] = a; //新しいルートを返す return par[x]; } } //xとyが同じ集合かどうか bool same(int x, int y) { //ルートが同じかどうかを判定すればOK return _find(x) == _find(y); } //初期化 //はじめは全部の頂点がルート void init(int n) { for (int i = 0; i < n; i++) { par[i] = i; _rank[i] = 0; } } // x と y を同じツリーにする void _union(int x, int y) { int root_x; int root_y; root_x = _find(x); root_y = _find(y); if (root_x == root_y) return; //最初から同じルートならすぐ返す //木の高さが高いほうの木の根に、低いほうの根をつなげる if (_rank[root_x] < _rank[root_y]) { // xy または x==y のとき // yをxにつなげる par[root_y] = root_x; // 高さが同じときだけ 高さを変える必要がある if (_rank[root_x] == _rank[root_y]) _rank[root_x]++; // つなげられた木の高さを1つふやす(全体の木の高さは1増える) } } int solve(int i, ULL index_flag) { return 0; } int main() { int K,ans=0; cin >> K; int a[] = { 1,2,3,4,5,6,7,8 }; do { int sum = a[0] * 10000000 + a[1] * 1000000 + a[2] * 100000 + a[3] * 10000 + a[4] * 1000 + a[5] * 100 + a[6] * 10 + a[7]; if ((sum % K) == 0) ++ans; } while (next_permutation(a, a + 8)); cout << ans << endl; return 0; }