結果

問題 No.617 Nafmo、買い出しに行く
ユーザー 💕💖💞💕💖💞
提出日時 2018-06-18 02:58:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,184 ms / 2,000 ms
コード長 377 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 150,832 KB
最終ジャッジ日時 2024-06-30 16:47:39
合計ジャッジ時間 13,440 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
60,236 KB
testcase_01 AC 38 ms
52,656 KB
testcase_02 AC 88 ms
71,204 KB
testcase_03 AC 134 ms
79,512 KB
testcase_04 AC 38 ms
52,516 KB
testcase_05 AC 204 ms
84,640 KB
testcase_06 AC 1,170 ms
150,436 KB
testcase_07 AC 1,173 ms
150,240 KB
testcase_08 AC 37 ms
53,084 KB
testcase_09 AC 37 ms
52,648 KB
testcase_10 AC 1,158 ms
150,252 KB
testcase_11 AC 1,163 ms
150,832 KB
testcase_12 AC 1,162 ms
150,536 KB
testcase_13 AC 1,167 ms
150,688 KB
testcase_14 AC 1,184 ms
150,448 KB
testcase_15 AC 1,166 ms
150,380 KB
testcase_16 AC 1,157 ms
150,284 KB
testcase_17 AC 1,167 ms
150,564 KB
testcase_18 AC 38 ms
53,360 KB
testcase_19 AC 37 ms
52,800 KB
testcase_20 AC 37 ms
52,336 KB
testcase_21 AC 36 ms
52,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split(' '))

xs = []
for i in range(n):
  xs.append( int( input() ) )

fullbin = f'1'*len(xs)
#print(fullbin)

ss = []
size = len(fullbin)
for i in range(0,int(fullbin,2)+1):
  #print(i)
  filt = f'{i:020b}'[-1*size:]
  #print(filt)
  s = sum( [ x for f, x in zip(filt, xs) if f == '1' ] )
  ss.append( s )

m = max(filter(lambda x:x <= k, ss))
print(m)
0