結果
問題 | No.1861 Required Number |
ユーザー | horitaka1999 |
提出日時 | 2022-03-05 00:16:34 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 866 bytes |
コンパイル時間 | 136 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 1,078,128 KB |
最終ジャッジ日時 | 2024-07-18 23:32:31 |
合計ジャッジ時間 | 17,340 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | MLE | - |
testcase_02 | WA | - |
testcase_03 | MLE | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | OLE | - |
testcase_25 | OLE | - |
testcase_26 | WA | - |
testcase_27 | OLE | - |
testcase_28 | OLE | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | OLE | - |
testcase_32 | WA | - |
testcase_33 | OLE | - |
testcase_34 | OLE | - |
testcase_35 | OLE | - |
testcase_36 | WA | - |
testcase_37 | OLE | - |
testcase_38 | OLE | - |
testcase_39 | OLE | - |
testcase_40 | OLE | - |
testcase_41 | OLE | - |
testcase_42 | OLE | - |
testcase_43 | OLE | - |
testcase_44 | WA | - |
04_evil_1.txt | TLE | - |
04_evil_2.txt | TLE | - |
04_evil_3.txt | TLE | - |
04_evil_4.txt | MLE | - |
ソースコード
from collections import deque N,K = map(int,input().split()) ldp = [[False] * (K+1) for _ in range(N+2)] ldp[0][0] = True rdp = [[False] * (K+1) for _ in range(N+2)] rdp[N+1][0] = True INF = float('inf') MIN = [INF for _ in range(K+1)] MAX = [0 for _ in range(K+1)] A = [0] + list(map(int,input().split())) for i in range(1,N+1): for k in range(K+1): ldp[i][k] |= ldp[i-1][k] if k >= A[i]: ldp[i][k] |= ldp[i-1][k-A[i]] for i in reversed(range(1,N+1)): for k in range(K+1): rdp[i][k] |= rdp[i+1][k] if k >= A[i]: rdp[i][k] |= rdp[i+1][k-A[i]] if ldp[N][K]: cnt = 0 for i in range(1,N+1): flag = True for x in range(K+1): if ldp[i-1][x] and rdp[i+1][K-x]: print(i,x) flag = False cnt += flag print(cnt) else: print(0)