結果

問題 No.2686 商品券の使い道
ユーザー sasa8uyauyasasa8uyauya
提出日時 2024-09-26 22:08:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,026 ms / 3,000 ms
コード長 483 bytes
コンパイル時間 275 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-09-26 22:08:48
合計ジャッジ時間 29,379 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,968 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 219 ms
77,952 KB
testcase_03 AC 229 ms
77,952 KB
testcase_04 AC 221 ms
77,568 KB
testcase_05 AC 218 ms
77,696 KB
testcase_06 AC 228 ms
77,952 KB
testcase_07 AC 231 ms
77,824 KB
testcase_08 AC 228 ms
78,336 KB
testcase_09 AC 237 ms
77,952 KB
testcase_10 AC 220 ms
77,824 KB
testcase_11 AC 233 ms
77,824 KB
testcase_12 AC 219 ms
77,568 KB
testcase_13 AC 244 ms
77,824 KB
testcase_14 AC 227 ms
77,696 KB
testcase_15 AC 235 ms
77,824 KB
testcase_16 AC 236 ms
77,952 KB
testcase_17 AC 233 ms
77,952 KB
testcase_18 AC 238 ms
77,952 KB
testcase_19 AC 233 ms
77,952 KB
testcase_20 AC 228 ms
77,824 KB
testcase_21 AC 233 ms
78,080 KB
testcase_22 AC 234 ms
77,824 KB
testcase_23 AC 232 ms
78,080 KB
testcase_24 AC 231 ms
77,824 KB
testcase_25 AC 236 ms
77,952 KB
testcase_26 AC 236 ms
77,952 KB
testcase_27 AC 225 ms
77,568 KB
testcase_28 AC 232 ms
77,824 KB
testcase_29 AC 1,012 ms
83,968 KB
testcase_30 AC 973 ms
84,096 KB
testcase_31 AC 971 ms
83,968 KB
testcase_32 AC 1,007 ms
84,224 KB
testcase_33 AC 965 ms
84,352 KB
testcase_34 AC 972 ms
83,968 KB
testcase_35 AC 971 ms
83,968 KB
testcase_36 AC 1,018 ms
83,968 KB
testcase_37 AC 1,011 ms
84,096 KB
testcase_38 AC 1,024 ms
84,096 KB
testcase_39 AC 1,021 ms
83,968 KB
testcase_40 AC 1,019 ms
84,096 KB
testcase_41 AC 976 ms
83,968 KB
testcase_42 AC 1,006 ms
84,352 KB
testcase_43 AC 1,021 ms
84,224 KB
testcase_44 AC 1,026 ms
84,224 KB
testcase_45 AC 1,001 ms
83,712 KB
testcase_46 AC 1,013 ms
83,712 KB
evil_random20_1.txt AC 958 ms
83,968 KB
evil_random20_2.txt AC 995 ms
83,968 KB
evil_random20_3.txt AC 994 ms
83,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p1,p2=map(int,input().split())
c=[tuple(map(int,input().split())) for i in range(n)]
q=[0]*(1<<n)
for i in range(1<<n):
  a=0
  b=0
  for j in range(n):
    if (i>>j)&1:
      a+=c[j][0]
      b+=c[j][1]
  if a<=p1:
    q[i]=b
for j in range(n):
  for i in range(1<<n):
    if (i>>j)&1:
      q[i]=max(q[i],q[i^(1<<j)])
g=0
for i in range(1<<n):
  a=0
  b=0
  for j in range(n):
    if (i>>j)&1:
      a+=c[j][0]
      b+=c[j][1]
  if a<=p2:
    g=max(g,b+q[((1<<n)-1)^i])
print(g)
0