結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | ygd. |
提出日時 | 2021-07-30 23:45:46 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,108 bytes |
コンパイル時間 | 171 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 69,120 KB |
最終ジャッジ日時 | 2024-09-16 03:58:42 |
合計ジャッジ時間 | 3,069 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
59,008 KB |
testcase_01 | AC | 46 ms
58,880 KB |
testcase_02 | AC | 45 ms
59,008 KB |
testcase_03 | AC | 61 ms
65,664 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | AC | 45 ms
59,264 KB |
testcase_07 | AC | 44 ms
58,880 KB |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | AC | 48 ms
61,824 KB |
testcase_11 | AC | 49 ms
62,080 KB |
testcase_12 | RE | - |
testcase_13 | AC | 47 ms
62,976 KB |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
ソースコード
def main(): N,K = map(int,input().split()) #global K C = list(map(int,input().split())) A = [] for i in range(N): for j in range(C[i]): A.append(i+1) #print(A) MAX = 200000 popcount = [0]*MAX for i in range(1,MAX): popcount[i] = popcount[i//2] + i%2 #print(popcount) #dp[mask][j]:maskを使った時の余りがj dp = [[0]*(K) for _ in range(1<<N)] dp[0][0] = 1 #何もない場合の数は1 for mask in range(1<<N): pcnt = popcount[mask] #この個数入っている #print("mask",mask,"pct",pcnt) base = pow(10,pcnt) for i in range(N): if (mask>>i)&1 == 1: continue #既に含まれている val = A[i]*base%K for j in range(K): #print(mask|1<<i,mask,val,base) dp[mask|1<<i][(j+val)%K] += dp[mask][j] #print(dp) ans = dp[-1][0] fact = [1] #fact[n]: n! for i in range(1,N+1): fact.append(fact[-1]*i) for c in C: ans //= fact[c] print(ans) if __name__ == '__main__': main()