結果

問題 No.1631 Sorting Integers (Multiple of K) Easy
ユーザー tailstails
提出日時 2023-03-09 10:44:44
言語 cLay
(20240714-1)
結果
AC  
実行時間 336 ms / 3,000 ms
コード長 299 bytes
コンパイル時間 2,135 ms
コンパイル使用メモリ 174,516 KB
実行使用メモリ 131,072 KB
最終ジャッジ日時 2024-09-18 02:50:01
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 5 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 3 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 2 ms
5,376 KB
testcase_14 AC 321 ms
124,928 KB
testcase_15 AC 336 ms
131,072 KB
testcase_16 AC 333 ms
131,072 KB
testcase_17 AC 334 ms
131,072 KB
testcase_18 AC 334 ms
130,944 KB
testcase_19 AC 333 ms
131,072 KB
testcase_20 AC 120 ms
130,944 KB
testcase_21 AC 109 ms
115,456 KB
testcase_22 AC 120 ms
128,768 KB
testcase_23 AC 129 ms
128,768 KB
testcase_24 AC 123 ms
128,768 KB
testcase_25 AC 120 ms
127,232 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 170 ms
94,976 KB
testcase_28 AC 74 ms
41,600 KB
testcase_29 AC 52 ms
42,368 KB
testcase_30 AC 103 ms
60,928 KB
testcase_31 AC 144 ms
94,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ll@n,@k,h[n]{},m=0;
n=0;
rep(i,1,10){
	ll@c;
	m|=1<<n;
	rep(j,c){
		h[n++]=i;
	}
}
m=~m;

ll d[1<<n][k]{};
d[(1<<n)-1][0]=1;
rrep(i,(1<<n)-1){
	if(!(i&~i<<1&m)){
		rep(j,n){
			ll o=i|1<<j;
			if(o!=i&&!(o&~o<<1&m)){
				rep(l,k){
					d[i][(l*10+h[j])%k]+=d[o][l];
				}
			}
		}
	}
}
wt(d[0][0]);
0