結果

問題 No.2329 Nafmo、イカサマをする
ユーザー ああいいああいい
提出日時 2023-06-01 11:42:34
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 941 bytes
コンパイル時間 703 ms
コンパイル使用メモリ 82,128 KB
実行使用メモリ 101,856 KB
最終ジャッジ日時 2024-06-08 21:31:21
合計ジャッジ時間 4,080 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,364 KB
testcase_01 AC 42 ms
58,836 KB
testcase_02 AC 37 ms
53,320 KB
testcase_03 RE -
testcase_04 AC 38 ms
52,564 KB
testcase_05 AC 39 ms
52,620 KB
testcase_06 AC 40 ms
52,148 KB
testcase_07 AC 39 ms
53,128 KB
testcase_08 AC 50 ms
62,176 KB
testcase_09 AC 41 ms
59,084 KB
testcase_10 AC 43 ms
60,532 KB
testcase_11 AC 42 ms
57,924 KB
testcase_12 AC 44 ms
59,216 KB
testcase_13 AC 42 ms
58,844 KB
testcase_14 AC 43 ms
59,536 KB
testcase_15 RE -
testcase_16 AC 42 ms
58,304 KB
testcase_17 AC 44 ms
59,764 KB
testcase_18 AC 44 ms
60,708 KB
testcase_19 AC 61 ms
67,712 KB
testcase_20 AC 49 ms
62,836 KB
testcase_21 AC 64 ms
69,516 KB
testcase_22 AC 49 ms
61,552 KB
testcase_23 AC 61 ms
68,748 KB
testcase_24 RE -
testcase_25 AC 47 ms
60,176 KB
testcase_26 RE -
testcase_27 AC 50 ms
63,440 KB
testcase_28 AC 45 ms
60,052 KB
testcase_29 AC 59 ms
66,620 KB
testcase_30 AC 44 ms
61,652 KB
testcase_31 RE -
testcase_32 AC 43 ms
59,096 KB
testcase_33 AC 46 ms
61,680 KB
testcase_34 AC 50 ms
63,148 KB
testcase_35 AC 48 ms
61,740 KB
testcase_36 AC 109 ms
82,476 KB
testcase_37 AC 51 ms
64,868 KB
testcase_38 AC 107 ms
90,088 KB
testcase_39 AC 152 ms
97,428 KB
testcase_40 AC 121 ms
92,844 KB
testcase_41 AC 192 ms
101,856 KB
testcase_42 AC 119 ms
93,644 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M,K = map(int,input().split())
A = list(map(int,input().split()))
A.append(0)


import sys

k1 = set(A)
k2 = set()
k3 = set()
for a in A:
    for b in A:
        k2.add(a + b)
        for c in A:
            k3.add(a + b + c)
if K == 0:
    print(0)
    exit()
if K == 1:
    ans == 0
    for a in A:
        if ans < a <= M:
            ans = a
    print(ans)
    exit()

D = K // 2
E = K - D
if D == 1:
    l = k1
elif D == 2:
    l = k2
else:
    l = k3
if E == 1:
    s = k1
elif E == 2:
    s = k2
else:
    s = k3
l = sorted(l)
s = sorted(s)
ans = 0

for a in l:
    if a + s[-1] <= M:
        if a + s[-1] > ans:
            ans = a + s[-1]
        continue
    end = len(s) - 1
    if a + s[0] > M:continue
    start = 0
    while end -start > 1:
        mid = end + start >> 1
        if a + s[mid] <= M:
            start = mid
        else:
            end = mid
    if a + s[start] > ans:
        ans = a + s[start]
print(ans)
0