結果

問題 No.2329 Nafmo、イカサマをする
ユーザー ntudantuda
提出日時 2023-06-10 12:51:13
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 364 ms
コンパイル使用メモリ 82,124 KB
実行使用メモリ 442,340 KB
最終ジャッジ日時 2025-01-02 18:40:51
合計ジャッジ時間 8,270 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
60,160 KB
testcase_01 AC 35 ms
52,872 KB
testcase_02 AC 37 ms
52,340 KB
testcase_03 AC 34 ms
53,452 KB
testcase_04 AC 34 ms
53,684 KB
testcase_05 AC 32 ms
52,940 KB
testcase_06 AC 33 ms
52,220 KB
testcase_07 AC 33 ms
52,512 KB
testcase_08 AC 69 ms
74,088 KB
testcase_09 AC 33 ms
52,624 KB
testcase_10 AC 33 ms
52,524 KB
testcase_11 AC 37 ms
58,312 KB
testcase_12 AC 38 ms
58,904 KB
testcase_13 AC 36 ms
58,776 KB
testcase_14 AC 31 ms
53,172 KB
testcase_15 AC 32 ms
52,400 KB
testcase_16 AC 40 ms
60,272 KB
testcase_17 AC 32 ms
53,404 KB
testcase_18 AC 33 ms
52,620 KB
testcase_19 AC 68 ms
74,400 KB
testcase_20 AC 39 ms
59,424 KB
testcase_21 AC 40 ms
60,312 KB
testcase_22 AC 41 ms
60,848 KB
testcase_23 AC 36 ms
59,844 KB
testcase_24 AC 33 ms
52,096 KB
testcase_25 AC 39 ms
60,648 KB
testcase_26 AC 34 ms
52,212 KB
testcase_27 AC 35 ms
58,792 KB
testcase_28 AC 33 ms
52,144 KB
testcase_29 AC 120 ms
92,744 KB
testcase_30 AC 41 ms
60,908 KB
testcase_31 AC 35 ms
53,716 KB
testcase_32 AC 32 ms
52,276 KB
testcase_33 AC 39 ms
58,172 KB
testcase_34 AC 39 ms
59,196 KB
testcase_35 AC 44 ms
62,344 KB
testcase_36 AC 938 ms
249,252 KB
testcase_37 AC 42 ms
60,448 KB
testcase_38 AC 40 ms
60,320 KB
testcase_39 AC 476 ms
174,920 KB
testcase_40 AC 236 ms
135,956 KB
testcase_41 TLE -
testcase_42 AC 249 ms
442,340 KB
権限があれば一括ダウンロードができます

ソースコード

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