結果

問題 No.2329 Nafmo、イカサマをする
ユーザー ntudantuda
提出日時 2023-06-10 12:57:18
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 325 bytes
コンパイル時間 229 ms
コンパイル使用メモリ 82,336 KB
実行使用メモリ 251,152 KB
最終ジャッジ日時 2024-06-10 20:58:29
合計ジャッジ時間 7,919 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
60,104 KB
testcase_01 AC 34 ms
52,516 KB
testcase_02 AC 38 ms
53,424 KB
testcase_03 AC 34 ms
52,200 KB
testcase_04 AC 36 ms
53,544 KB
testcase_05 AC 33 ms
52,336 KB
testcase_06 AC 34 ms
52,816 KB
testcase_07 AC 33 ms
52,536 KB
testcase_08 AC 74 ms
73,672 KB
testcase_09 AC 34 ms
53,292 KB
testcase_10 AC 33 ms
52,600 KB
testcase_11 AC 37 ms
59,332 KB
testcase_12 AC 39 ms
59,972 KB
testcase_13 AC 36 ms
57,980 KB
testcase_14 AC 33 ms
53,008 KB
testcase_15 AC 33 ms
52,836 KB
testcase_16 AC 38 ms
60,396 KB
testcase_17 AC 33 ms
52,156 KB
testcase_18 AC 37 ms
57,916 KB
testcase_19 AC 74 ms
75,524 KB
testcase_20 AC 43 ms
60,764 KB
testcase_21 AC 41 ms
61,728 KB
testcase_22 AC 40 ms
60,400 KB
testcase_23 AC 39 ms
60,064 KB
testcase_24 AC 33 ms
52,884 KB
testcase_25 AC 40 ms
60,992 KB
testcase_26 AC 34 ms
54,024 KB
testcase_27 AC 39 ms
58,968 KB
testcase_28 AC 34 ms
53,020 KB
testcase_29 AC 137 ms
95,172 KB
testcase_30 AC 40 ms
59,368 KB
testcase_31 AC 34 ms
52,536 KB
testcase_32 AC 34 ms
53,368 KB
testcase_33 AC 36 ms
59,596 KB
testcase_34 AC 37 ms
58,056 KB
testcase_35 AC 41 ms
60,844 KB
testcase_36 AC 1,142 ms
251,152 KB
testcase_37 AC 44 ms
61,856 KB
testcase_38 AC 39 ms
60,056 KB
testcase_39 AC 503 ms
191,440 KB
testcase_40 AC 297 ms
147,104 KB
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
A = list(map(int,input().split())) + [0]

S = set(A)
for i in range(K-1):
    S2 = set()
    for a in A:
        for b in S:
            d = a + b
            if d <= M:
                S2.add(d)
    S = S2

S = list(S)
S.sort()
#print(S)
from bisect import *
print(S[bisect_right(S,M) - 1])
0