結果

問題 No.1644 Eight Digits
ユーザー Drice27149Drice27149
提出日時 2021-08-13 21:35:43
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 3 ms / 1,000 ms
コード長 393 bytes
コンパイル時間 510 ms
コンパイル使用メモリ 63,496 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-03 17:35:33
合計ジャッジ時間 1,284 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 25
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
using std::string;
int a[15], vis[15];
int ans = 0;
int k;

void dfs(int p,int now){
	if(p==9){
		if(now%k==0) ans++;
	}
	else{
		for(int i = 1; i <= 8; i++){
			if(!vis[i]){
				vis[i] = 1;
				//now = now*10 + i;
				dfs(p+1, now*10+i); 
				vis[i] = 0;
			}
		}
	}
}

int main(){
	//int k;
	scanf("%d",&k);
	dfs(1,0);
	printf("%d\n",ans);
	return 0;
}
0