結果

問題 No.2686 商品券の使い道
ユーザー titiatitia
提出日時 2024-03-26 04:08:21
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 896 bytes
コンパイル時間 313 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 134,272 KB
最終ジャッジ日時 2024-09-30 14:13:32
合計ジャッジ時間 14,890 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
134,272 KB
testcase_01 AC 36 ms
52,224 KB
testcase_02 AC 97 ms
72,064 KB
testcase_03 AC 110 ms
76,076 KB
testcase_04 AC 105 ms
75,904 KB
testcase_05 AC 105 ms
73,644 KB
testcase_06 AC 106 ms
73,856 KB
testcase_07 AC 99 ms
73,216 KB
testcase_08 AC 98 ms
72,192 KB
testcase_09 AC 99 ms
73,216 KB
testcase_10 AC 104 ms
73,984 KB
testcase_11 AC 1,291 ms
85,632 KB
testcase_12 AC 422 ms
82,688 KB
testcase_13 AC 202 ms
110,532 KB
testcase_14 AC 1,717 ms
84,864 KB
testcase_15 AC 408 ms
76,032 KB
testcase_16 AC 1,051 ms
93,312 KB
testcase_17 AC 322 ms
76,160 KB
testcase_18 AC 199 ms
92,928 KB
testcase_19 AC 400 ms
92,800 KB
testcase_20 AC 137 ms
110,600 KB
testcase_21 AC 1,820 ms
100,352 KB
testcase_22 AC 167 ms
75,904 KB
testcase_23 AC 554 ms
79,744 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
testcase_32 -- -
testcase_33 -- -
testcase_34 -- -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
evil_random20_1.txt -- -
evil_random20_2.txt -- -
evil_random20_3.txt -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,Q=map(int,input().split())

AB=[list(map(int,input().split())) for i in range(N)]

LIST1=[]
LIST2=[]

for i in range(1<<N):
    c=0
    v=0
    for j in range(N):
        if i & (1<<j) != 0:
            c+=AB[j][0]
            v+=AB[j][1]

    if c<=M:
        LIST1.append(i)
    if c<=Q:
        LIST2.append(i)

LIST=[]
for x in LIST1[::-1]:
    flag=1
    for y in LIST:
        if x|y==y:
            flag=0
            break
    if flag==1:
        LIST.append(x)

LIST1=LIST

LIST=[]
for x in LIST2[::-1]:
    flag=1
    for y in LIST:
        if x|y==y:
            flag=0
            break
    if flag==1:
        LIST.append(x)

LIST2=LIST

ANS=0
for x in LIST1:
    for y in LIST2:
        z=x|y
        score=0

        for i in range(N):
            if z & (1<<i) !=0:
                score+=AB[i][1]
        ANS=max(ANS,score)

print(ANS)
0