結果

問題 No.2329 Nafmo、イカサマをする
ユーザー tetorapentagontetorapentagon
提出日時 2023-05-28 15:41:52
言語 PyPy3
(7.3.15)
結果
MLE  
実行時間 -
コード長 391 bytes
コンパイル時間 954 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 892,500 KB
最終ジャッジ日時 2024-12-27 08:09:05
合計ジャッジ時間 80,111 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 122 ms
102,428 KB
testcase_01 MLE -
testcase_02 AC 92 ms
113,024 KB
testcase_03 MLE -
testcase_04 AC 151 ms
103,256 KB
testcase_05 MLE -
testcase_06 AC 150 ms
100,880 KB
testcase_07 MLE -
testcase_08 WA -
testcase_09 MLE -
testcase_10 WA -
testcase_11 MLE -
testcase_12 WA -
testcase_13 MLE -
testcase_14 WA -
testcase_15 MLE -
testcase_16 WA -
testcase_17 MLE -
testcase_18 TLE -
testcase_19 MLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 MLE -
testcase_24 TLE -
testcase_25 MLE -
testcase_26 TLE -
testcase_27 MLE -
testcase_28 TLE -
testcase_29 MLE -
testcase_30 TLE -
testcase_31 MLE -
testcase_32 WA -
testcase_33 MLE -
testcase_34 TLE -
testcase_35 MLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 MLE -
権限があれば一括ダウンロードができます

ソースコード

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