結果

問題 No.2329 Nafmo、イカサマをする
ユーザー pありpあり
提出日時 2023-05-28 15:17:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 281 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-06-08 07:25:13
合計ジャッジ時間 4,763 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
54,144 KB
testcase_01 AC 44 ms
54,144 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 42 ms
54,400 KB
testcase_04 AC 41 ms
54,016 KB
testcase_05 AC 41 ms
54,144 KB
testcase_06 AC 41 ms
54,400 KB
testcase_07 AC 41 ms
54,016 KB
testcase_08 AC 70 ms
70,912 KB
testcase_09 AC 44 ms
54,400 KB
testcase_10 AC 45 ms
60,416 KB
testcase_11 AC 50 ms
62,080 KB
testcase_12 AC 57 ms
64,512 KB
testcase_13 AC 55 ms
64,000 KB
testcase_14 AC 47 ms
61,312 KB
testcase_15 AC 47 ms
61,312 KB
testcase_16 AC 50 ms
61,696 KB
testcase_17 AC 47 ms
60,416 KB
testcase_18 AC 59 ms
68,224 KB
testcase_19 AC 96 ms
80,768 KB
testcase_20 AC 75 ms
76,672 KB
testcase_21 AC 95 ms
81,920 KB
testcase_22 AC 74 ms
76,160 KB
testcase_23 AC 81 ms
75,008 KB
testcase_24 AC 57 ms
65,024 KB
testcase_25 AC 75 ms
76,416 KB
testcase_26 AC 55 ms
64,256 KB
testcase_27 AC 55 ms
64,512 KB
testcase_28 AC 51 ms
62,208 KB
testcase_29 AC 84 ms
76,544 KB
testcase_30 AC 69 ms
73,472 KB
testcase_31 AC 73 ms
73,216 KB
testcase_32 AC 53 ms
62,720 KB
testcase_33 AC 55 ms
64,256 KB
testcase_34 AC 63 ms
67,456 KB
testcase_35 AC 69 ms
74,240 KB
testcase_36 AC 151 ms
90,752 KB
testcase_37 AC 92 ms
79,872 KB
testcase_38 AC 156 ms
102,144 KB
testcase_39 AC 208 ms
105,856 KB
testcase_40 AC 205 ms
106,240 KB
testcase_41 AC 281 ms
105,600 KB
testcase_42 AC 203 ms
106,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
import heapq

n,m,k = map(int, input().split())


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

s = [set() for _ in range(4)]
s[0].add(0)

for i1 in range(n):
  now1 = a[i1]
  s[1].add(now1)
  for i2 in range(n):
    now2 = now1+a[i2]
    s[2].add(now2)
    for i3 in range(n):
      s[3].add(now2+a[i3])
  
for i in range(4):
  s[i] = list(s[i])
  s[i].sort()

ans = 0
for k1 in range(4):
  for k2 in range(4):
    if(k1+k2<=k):
      for a1 in s[k1]:
        b = m-a1
        i = bisect.bisect(s[k2],b)-1
        now = a1+s[k2][i]
        if(now<=m):
          ans = max(ans, now)
        
print(ans)
  
  
  

      




0