結果

問題 No.617 Nafmo、買い出しに行く
ユーザー kryu_______2740kryu_______2740
提出日時 2018-02-22 15:30:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 885 ms / 2,000 ms
コード長 582 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,188 KB
最終ジャッジ日時 2024-10-01 12:36:20
合計ジャッジ時間 9,442 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 68 ms
14,336 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 105 ms
17,336 KB
testcase_06 AC 839 ms
59,012 KB
testcase_07 AC 885 ms
59,008 KB
testcase_08 AC 25 ms
10,752 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 745 ms
59,008 KB
testcase_11 AC 730 ms
59,056 KB
testcase_12 AC 760 ms
59,012 KB
testcase_13 AC 762 ms
59,012 KB
testcase_14 AC 754 ms
59,188 KB
testcase_15 AC 812 ms
59,008 KB
testcase_16 AC 777 ms
59,016 KB
testcase_17 AC 770 ms
59,008 KB
testcase_18 AC 27 ms
10,624 KB
testcase_19 AC 26 ms
10,752 KB
testcase_20 AC 24 ms
10,752 KB
testcase_21 AC 25 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# combinationの勉強

import itertools as it
#N[0]は個数,N[1]がmaxweight

N = list(map(int,input().split()))
A = [0]*N[0]
for i in range(N[0]):
    A[i] = int(input())

combi = list(it.combinations(A,0))

#print(combi)


ans = 0
weight = 0

for i in range(N[0]):
    combi = list(it.combinations(A,i+1))#nCnにおいて後ろのnが1より大きくないと何もcombiしない
    #print(combi)
    for j in range(len(combi)):
        weight = sum(combi[j])
        #print(weight)
        if (ans<=weight)and(weight<=N[1]):
            ans = weight

            
print(ans)

0