結果

問題 No.617 Nafmo、買い出しに行く
ユーザー syunsukesyunsuke
提出日時 2019-06-03 23:20:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,276 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,596 KB
実行使用メモリ 76,156 KB
最終ジャッジ日時 2024-09-17 20:39:59
合計ジャッジ時間 14,844 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,416 KB
testcase_01 AC 37 ms
51,820 KB
testcase_02 AC 49 ms
61,568 KB
testcase_03 AC 109 ms
64,384 KB
testcase_04 AC 37 ms
52,096 KB
testcase_05 AC 159 ms
67,072 KB
testcase_06 AC 1,262 ms
75,644 KB
testcase_07 AC 1,260 ms
76,156 KB
testcase_08 AC 36 ms
53,572 KB
testcase_09 AC 36 ms
52,248 KB
testcase_10 AC 1,260 ms
75,780 KB
testcase_11 AC 1,267 ms
75,992 KB
testcase_12 AC 1,251 ms
76,040 KB
testcase_13 AC 1,276 ms
75,648 KB
testcase_14 AC 1,256 ms
75,584 KB
testcase_15 AC 1,261 ms
75,648 KB
testcase_16 AC 1,256 ms
75,648 KB
testcase_17 AC 1,269 ms
75,776 KB
testcase_18 AC 36 ms
51,840 KB
testcase_19 AC 36 ms
51,968 KB
testcase_20 AC 37 ms
52,224 KB
testcase_21 AC 35 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=[0 for i in range(N)]
for i in range(N):
    a=int(input())
    A[i]=a
    
ans=0
for i in range(2**N):
    I=i
    cnt=0
    for a in range(N):
        if I//(2**(N-1-a))==1:
            cnt+=A[a]
        I%=(2**(N-1-a))
    #print(i,cnt)
    if cnt<=K and ans<cnt:
        ans=cnt
print(ans)
0