結果

問題 No.2329 Nafmo、イカサマをする
ユーザー pありpあり
提出日時 2023-05-28 15:05:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 491 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 108,800 KB
最終ジャッジ日時 2024-06-08 06:59:02
合計ジャッジ時間 4,951 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 46 ms
60,416 KB
testcase_02 AC 44 ms
54,016 KB
testcase_03 WA -
testcase_04 AC 43 ms
54,400 KB
testcase_05 AC 43 ms
53,856 KB
testcase_06 AC 45 ms
54,268 KB
testcase_07 AC 43 ms
54,144 KB
testcase_08 AC 60 ms
66,164 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 50 ms
61,696 KB
testcase_17 WA -
testcase_18 AC 58 ms
67,840 KB
testcase_19 WA -
testcase_20 AC 65 ms
74,496 KB
testcase_21 AC 89 ms
82,108 KB
testcase_22 AC 59 ms
68,352 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 66 ms
73,856 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 50 ms
60,928 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 AC 133 ms
90,620 KB
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 192 ms
108,232 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque
import bisect
import heapq

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


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

sum3 = set()

for i1 in range(n):
  now1 = a[i1]
  for i2 in range(n):
    now2 = now1+a[i2]
    for i3 in range(n):
      sum3.add(now2+a[i3])
      
sum3 = list(sum3)
sum3.sort() 

bisect.bisect(a,55)
ans = 0

for a in sum3:
  b = m-a
  i = bisect.bisect(sum3,b)-1
  now = a+sum3[i]
  
  if(now<=m):
    ans = max(ans, now)
print(ans)
  
  
0