結果

問題 No.1163 I want to be a high achiever
ユーザー MitarushiMitarushi
提出日時 2020-08-11 15:36:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 217 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 76,052 KB
最終ジャッジ日時 2024-10-09 11:26:51
合計ジャッジ時間 4,009 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 52 ms
60,672 KB
testcase_01 AC 40 ms
52,096 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 44 ms
60,032 KB
testcase_04 AC 107 ms
75,520 KB
testcase_05 AC 131 ms
75,776 KB
testcase_06 AC 69 ms
75,772 KB
testcase_07 AC 149 ms
75,980 KB
testcase_08 AC 149 ms
75,920 KB
testcase_09 AC 37 ms
52,224 KB
testcase_10 AC 107 ms
75,648 KB
testcase_11 AC 133 ms
75,648 KB
testcase_12 AC 106 ms
75,776 KB
testcase_13 AC 75 ms
75,816 KB
testcase_14 AC 80 ms
75,264 KB
testcase_15 AC 141 ms
75,648 KB
testcase_16 AC 92 ms
75,484 KB
testcase_17 AC 107 ms
76,032 KB
testcase_18 AC 154 ms
75,648 KB
testcase_19 AC 72 ms
75,392 KB
testcase_20 AC 59 ms
70,528 KB
testcase_21 AC 38 ms
52,864 KB
testcase_22 AC 120 ms
75,520 KB
testcase_23 AC 112 ms
75,648 KB
testcase_24 AC 151 ms
75,776 KB
testcase_25 AC 93 ms
76,052 KB
testcase_26 AC 38 ms
52,480 KB
testcase_27 AC 37 ms
51,968 KB
testcase_28 AC 38 ms
52,352 KB
testcase_29 AC 38 ms
52,352 KB
testcase_30 AC 36 ms
52,480 KB
testcase_31 AC 37 ms
51,840 KB
testcase_32 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, x = [int(i) for i in input().split()]
a = [int(i)-x for i in input().split()]
b = [int(i) for i in input().split()]


if all(map(lambda x: x < 0, a)):
    print(-1)
    exit()

sum_a = sum(a)
if sum_a >= 0:
    print(0)
    exit()
sum_a *= -1

dp = [10 ** 8] * (sum_a+1)
dp[0] = 0

for index, score in enumerate(a):
    if score >= 0:
        continue

    for i in reversed(range(sum_a)):
        j = min(sum_a, i - score)
        dp[j] = min(dp[j], dp[i] + b[index])

print(dp[-1])
0