結果

問題 No.2329 Nafmo、イカサマをする
ユーザー tetorapentagontetorapentagon
提出日時 2023-05-28 15:41:52
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 391 bytes
コンパイル時間 701 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 364,964 KB
最終ジャッジ日時 2024-06-08 08:18:28
合計ジャッジ時間 11,918 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
103,072 KB
testcase_01 AC 162 ms
98,800 KB
testcase_02 AC 88 ms
108,032 KB
testcase_03 WA -
testcase_04 AC 147 ms
96,056 KB
testcase_05 AC 143 ms
98,124 KB
testcase_06 AC 152 ms
96,008 KB
testcase_07 AC 131 ms
96,208 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 RE -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
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 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq    
from bisect import bisect_left
N, M, K = map(int, input().split())
A = list(map(int, input().split()))
Q = []
B = set()      
Q.append(0)   
B.add(0)  
for i in range(2*10**5):
    d = heapq.heappop(Q)
    for j in range(N):
        if d + A[j] not in B:
            B.add(d+A[j])
            heapq.heappush(Q, d+A[j])

C = sorted(list(B))
d = bisect_left(C, M)
print(C[d])
0