結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | 👑 SPD_9X2 |
提出日時 | 2021-03-31 21:35:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 849 bytes |
コンパイル時間 | 386 ms |
コンパイル使用メモリ | 82,396 KB |
実行使用メモリ | 65,152 KB |
最終ジャッジ日時 | 2024-05-09 05:53:08 |
合計ジャッジ時間 | 2,115 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
51,968 KB |
testcase_01 | AC | 36 ms
51,840 KB |
testcase_02 | WA | - |
testcase_03 | AC | 37 ms
52,480 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 36 ms
51,840 KB |
testcase_08 | AC | 36 ms
52,400 KB |
testcase_09 | AC | 46 ms
60,928 KB |
testcase_10 | AC | 46 ms
61,056 KB |
testcase_11 | AC | 43 ms
59,520 KB |
testcase_12 | AC | 54 ms
61,824 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 49 ms
62,080 KB |
testcase_16 | AC | 45 ms
60,928 KB |
testcase_17 | AC | 36 ms
51,840 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
""" dp[A][S] = 今の数がA個で、総和が """ import sys from sys import stdin N,M,X,Y,Z = map(int,stdin.readline().split()) A = list(map(int,stdin.readline().split())) a = A always = [] lis = [] for i in A: if i <= Y: pass elif i < X: lis.append(i) else: always.append(i) if len(always) > M: print ("Handicapped") sys.exit() sl = sum(lis) dp = [ [0] * (sl+1) for i in range(len(lis)+1)] dp[0][0] = 1 for i in range(len(lis)): for x in range(len(lis),-1,-1): for y in range(sl,-1,-1): if x+1 <= len(lis) and y+lis[i] <= sl: dp[x+1][y+lis[i]] += dp[x][y] ans = 0 asum = sum(always) for x in range(len(lis)+1): for y in range(sl+1): if y+asum == Z * (x+len(always)) and x+len(always) <= M: ans += dp[x][y] print (ans)