結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
59,104 KB
testcase_01 AC 34 ms
53,572 KB
testcase_02 AC 35 ms
52,692 KB
testcase_03 AC 35 ms
53,140 KB
testcase_04 AC 35 ms
52,788 KB
testcase_05 AC 34 ms
52,376 KB
testcase_06 AC 39 ms
53,812 KB
testcase_07 AC 38 ms
53,084 KB
testcase_08 AC 80 ms
73,828 KB
testcase_09 AC 41 ms
53,028 KB
testcase_10 AC 38 ms
52,612 KB
testcase_11 AC 39 ms
58,700 KB
testcase_12 AC 40 ms
60,140 KB
testcase_13 AC 39 ms
60,668 KB
testcase_14 AC 35 ms
52,684 KB
testcase_15 AC 32 ms
52,816 KB
testcase_16 AC 41 ms
60,260 KB
testcase_17 AC 35 ms
53,612 KB
testcase_18 AC 36 ms
59,256 KB
testcase_19 AC 79 ms
76,476 KB
testcase_20 AC 43 ms
62,060 KB
testcase_21 AC 42 ms
60,468 KB
testcase_22 AC 41 ms
59,976 KB
testcase_23 AC 39 ms
59,428 KB
testcase_24 AC 37 ms
53,276 KB
testcase_25 AC 42 ms
61,852 KB
testcase_26 AC 35 ms
52,492 KB
testcase_27 AC 37 ms
60,176 KB
testcase_28 AC 37 ms
53,940 KB
testcase_29 AC 144 ms
96,240 KB
testcase_30 AC 41 ms
61,256 KB
testcase_31 AC 34 ms
53,032 KB
testcase_32 AC 35 ms
54,136 KB
testcase_33 AC 37 ms
59,548 KB
testcase_34 AC 39 ms
59,104 KB
testcase_35 AC 42 ms
60,468 KB
testcase_36 AC 1,044 ms
251,420 KB
testcase_37 AC 44 ms
62,208 KB
testcase_38 AC 40 ms
60,548 KB
testcase_39 AC 481 ms
192,124 KB
testcase_40 AC 303 ms
147,860 KB
testcase_41 TLE -
testcase_42 AC 323 ms
453,912 KB
権限があれば一括ダウンロードができます

ソースコード

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