結果

問題 No.1163 I want to be a high achiever
ユーザー mlihua09mlihua09
提出日時 2020-08-26 02:31:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 164 ms / 2,000 ms
コード長 482 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,076 KB
実行使用メモリ 66,604 KB
最終ジャッジ日時 2024-11-06 11:57:40
合計ジャッジ時間 4,139 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
61,416 KB
testcase_01 AC 39 ms
51,960 KB
testcase_02 AC 48 ms
62,308 KB
testcase_03 AC 47 ms
61,192 KB
testcase_04 AC 96 ms
63,796 KB
testcase_05 AC 142 ms
65,104 KB
testcase_06 AC 65 ms
64,484 KB
testcase_07 AC 163 ms
65,556 KB
testcase_08 AC 162 ms
65,856 KB
testcase_09 AC 39 ms
53,100 KB
testcase_10 AC 98 ms
64,524 KB
testcase_11 AC 141 ms
66,056 KB
testcase_12 AC 104 ms
64,460 KB
testcase_13 AC 71 ms
66,064 KB
testcase_14 AC 73 ms
65,452 KB
testcase_15 AC 152 ms
64,780 KB
testcase_16 AC 86 ms
65,760 KB
testcase_17 AC 109 ms
64,912 KB
testcase_18 AC 162 ms
65,456 KB
testcase_19 AC 63 ms
63,204 KB
testcase_20 AC 57 ms
64,052 KB
testcase_21 AC 40 ms
52,460 KB
testcase_22 AC 126 ms
65,724 KB
testcase_23 AC 114 ms
65,212 KB
testcase_24 AC 164 ms
66,604 KB
testcase_25 AC 91 ms
66,092 KB
testcase_26 AC 39 ms
52,696 KB
testcase_27 AC 39 ms
53,072 KB
testcase_28 AC 39 ms
51,940 KB
testcase_29 AC 41 ms
58,348 KB
testcase_30 AC 38 ms
53,036 KB
testcase_31 AC 39 ms
52,240 KB
testcase_32 AC 38 ms
53,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, X = map(int, input().split())

A = list(map(lambda x: X - int(x), input().split()))

B = list(map(int, input().split()))

n = sum(A)

if n <= 0:
    
    print(0)
    
    exit()
    
dp = [0] + [sum(B)] * n


for i in range(N):
    
    if A[i] > 0:
        
        for j in range(-1, -n - 2, -1):
            
            dp[j] = min(dp[j], dp[max(j - A[i], -n-1)] + B[i])
            
            


if dp[-1] == sum(B):
    
    print(-1)
    
else:
    
    print(dp[-1])
0