結果
問題 | No.1631 Sorting Integers (Multiple of K) Easy |
ユーザー | ygd. |
提出日時 | 2021-07-30 22:23:20 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,152 bytes |
コンパイル時間 | 89 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 35,712 KB |
最終ジャッジ日時 | 2024-09-16 00:52:59 |
合計ジャッジ時間 | 5,889 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 59 ms
17,408 KB |
testcase_01 | AC | 59 ms
12,288 KB |
testcase_02 | AC | 58 ms
12,160 KB |
testcase_03 | AC | 163 ms
12,800 KB |
testcase_04 | AC | 59 ms
12,160 KB |
testcase_05 | AC | 59 ms
12,032 KB |
testcase_06 | AC | 59 ms
12,160 KB |
testcase_07 | AC | 59 ms
12,032 KB |
testcase_08 | AC | 62 ms
12,160 KB |
testcase_09 | AC | 117 ms
12,672 KB |
testcase_10 | AC | 61 ms
12,288 KB |
testcase_11 | AC | 74 ms
12,288 KB |
testcase_12 | AC | 68 ms
12,288 KB |
testcase_13 | AC | 59 ms
12,160 KB |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
import copy import sys sys.setrecursionlimit(1000000) from functools import lru_cache 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 @lru_cache(maxsize=None) def solve(X): #Xというタプルまで見た時次の遷移 X = list(X) pcnt = 0 for a in X: pcnt += a if pcnt == 0: ret = [0]*K ret[0] = 1 return ret base = pow(10,pcnt-1) ret = [0]*K for i in range(9): if X[i] >= 1: val = base*(i+1) TX = copy.copy(X) TX[i] -= 1 TX = tuple(TX) for i in range(K): temp = solve(TX) ret[(i+val)%K] += temp[i] #print(X,ret) return ret d = solve(tuple(C)) print(d[0]) exit() if __name__ == '__main__': main()