結果

問題 No.1644 Eight Digits
ユーザー V_MelvilleV_Melville
提出日時 2021-08-14 01:56:43
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 2 ms / 1,000 ms
コード長 388 bytes
コンパイル時間 1,906 ms
コンパイル使用メモリ 194,048 KB
最終ジャッジ日時 2025-01-23 21:33:17
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i, n) for (int i = 0; i < (n); ++i)

using std::cin;
using std::cout;
using std::vector;

int main() {
	int k;
	cin >> k;
	
	vector<int> a(8);
	iota(a.begin(), a.end(), 1);
	
	int ans = 0;
	do {
		int x = 0;
		rep(i, 8) x = x * 10 + a[i];

		if (x % k == 0) ++ans;
	} while(next_permutation(a.begin(), a.end()));
	
	cout << ans << '\n';
	
	return 0;
}
0