結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | roaris |
提出日時 | 2021-03-31 21:41:05 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 191 ms |
コンパイル使用メモリ | 82,324 KB |
実行使用メモリ | 127,820 KB |
最終ジャッジ日時 | 2024-05-09 06:12:15 |
合計ジャッジ時間 | 3,709 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
69,504 KB |
testcase_01 | AC | 40 ms
53,640 KB |
testcase_02 | WA | - |
testcase_03 | AC | 52 ms
64,768 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 39 ms
54,272 KB |
testcase_08 | AC | 40 ms
53,888 KB |
testcase_09 | AC | 117 ms
89,600 KB |
testcase_10 | AC | 116 ms
89,512 KB |
testcase_11 | AC | 68 ms
69,888 KB |
testcase_12 | AC | 274 ms
127,600 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 175 ms
106,588 KB |
testcase_16 | AC | 212 ms
127,820 KB |
testcase_17 | AC | 40 ms
53,632 KB |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
ソースコード
import sys input = sys.stdin.readline from collections import * N, M, X, Y, Z = map(int, input().split()) A = list(map(int, input().split())) cnt = 0 for i in range(N): if A[i]>=X: cnt += 1 if cnt>M: print('Handicapped') exit() dp = [[[0]*2510 for _ in range(N+1)] for _ in range(N+1)] dp[0][0][0] = 1 for i in range(N): for j in range(N+1): for k in range(2510): if A[i]>Y and j+1<=N and k+A[i]<2510: dp[i+1][j+1][k+A[i]] += dp[i][j][k] if A[i]<X: dp[i+1][j][k] += dp[i][j][k] ans = 0 for i in range(M+1): for j in range(2510): if j==i*Z: ans += dp[N][i][j] print(ans)