結果
問題 | No.1457 ツブ消ししとるなHard |
ユーザー | first_vil |
提出日時 | 2021-11-12 10:54:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 602 bytes |
コンパイル時間 | 338 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 26,428 KB |
最終ジャッジ日時 | 2024-11-24 19:42:07 |
合計ジャッジ時間 | 29,484 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 232 ms
18,208 KB |
testcase_01 | AC | 30 ms
25,792 KB |
testcase_02 | AC | 89 ms
18,080 KB |
testcase_03 | AC | 58 ms
25,880 KB |
testcase_04 | TLE | - |
testcase_05 | TLE | - |
testcase_06 | TLE | - |
testcase_07 | AC | 29 ms
24,960 KB |
testcase_08 | AC | 27 ms
17,700 KB |
testcase_09 | AC | 1,768 ms
19,492 KB |
testcase_10 | AC | 1,864 ms
19,424 KB |
testcase_11 | AC | 436 ms
26,428 KB |
testcase_12 | TLE | - |
testcase_13 | AC | 1,911 ms
12,504 KB |
testcase_14 | AC | 361 ms
11,264 KB |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | AC | 28 ms
11,008 KB |
testcase_18 | AC | 32 ms
11,008 KB |
testcase_19 | TLE | - |
testcase_20 | AC | 33 ms
17,956 KB |
ソースコード
from bisect import * N,M,X,Y,Z = map(int,input().split()) A = list(map(int,input().split())) y = bisect_right(A,Y) x = bisect_left(A,X) if N-x > M: print("Handicapped") exit(0) s = 2500 dp = [[0]*(s*2+100) for i in range(M+1)] dp[0][0] = 1 for a in A: nxt = [[0]*(s*2+100) for i in range(M+1)] for i in range(M+1): for j in range(-s,s+1): if i+1 <= M and Y < a and -s <= j+a-Z <= s: nxt[i+1][j+a-Z] += dp[i][j] if a < X: nxt[i][j] += dp[i][j] dp = nxt ans = 0 for i in range(1,M+1): ans += dp[i][0] print(ans)