結果

問題 No.2329 Nafmo、イカサマをする
ユーザー ntudantuda
提出日時 2023-06-10 12:51:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,036 KB
実行使用メモリ 306,996 KB
最終ジャッジ日時 2024-06-10 20:56:54
合計ジャッジ時間 7,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
58,260 KB
testcase_01 AC 33 ms
52,276 KB
testcase_02 AC 34 ms
52,880 KB
testcase_03 AC 34 ms
52,540 KB
testcase_04 AC 35 ms
52,260 KB
testcase_05 AC 37 ms
52,436 KB
testcase_06 AC 33 ms
52,708 KB
testcase_07 AC 33 ms
52,428 KB
testcase_08 AC 66 ms
72,840 KB
testcase_09 AC 34 ms
53,556 KB
testcase_10 AC 34 ms
52,188 KB
testcase_11 AC 39 ms
60,164 KB
testcase_12 AC 39 ms
58,932 KB
testcase_13 AC 39 ms
59,100 KB
testcase_14 AC 35 ms
52,556 KB
testcase_15 AC 33 ms
51,812 KB
testcase_16 AC 40 ms
61,240 KB
testcase_17 AC 33 ms
53,220 KB
testcase_18 AC 33 ms
52,144 KB
testcase_19 AC 69 ms
73,328 KB
testcase_20 AC 40 ms
60,268 KB
testcase_21 AC 40 ms
59,808 KB
testcase_22 AC 43 ms
61,012 KB
testcase_23 AC 41 ms
58,248 KB
testcase_24 AC 33 ms
52,292 KB
testcase_25 AC 40 ms
59,632 KB
testcase_26 AC 33 ms
53,100 KB
testcase_27 AC 37 ms
58,660 KB
testcase_28 AC 35 ms
52,644 KB
testcase_29 AC 117 ms
91,856 KB
testcase_30 AC 42 ms
59,316 KB
testcase_31 AC 35 ms
53,180 KB
testcase_32 AC 34 ms
52,152 KB
testcase_33 AC 38 ms
59,176 KB
testcase_34 AC 39 ms
59,040 KB
testcase_35 AC 43 ms
61,180 KB
testcase_36 AC 960 ms
249,016 KB
testcase_37 AC 41 ms
61,744 KB
testcase_38 AC 43 ms
60,208 KB
testcase_39 AC 521 ms
174,416 KB
testcase_40 AC 251 ms
135,988 KB
testcase_41 TLE -
testcase_42 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

#N,M,K = 100,1000000000,6
#from random import randint
#A = [randint(1,1000000000) for _ in range(N)]

S = [0]
for i in range(K):
    S2 = set()
    for a in A:
        for b in S:
            d = a + b
            if d <= M:
                S2.add(d)
    S = S2
    #print(i,len(S))

ans = 0
for s in S:
    if s <= M:
        ans = max(ans,s)
print(ans)
0