結果

問題 No.617 Nafmo、買い出しに行く
ユーザー tsuchinagatsuchinaga
提出日時 2019-02-28 12:20:05
言語 Go
(1.22.1)
結果
AC  
実行時間 594 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 15,287 ms
コンパイル使用メモリ 237,580 KB
実行使用メモリ 8,096 KB
最終ジャッジ日時 2024-06-23 11:36:41
合計ジャッジ時間 19,739 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,816 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 36 ms
6,944 KB
testcase_04 AC 1 ms
6,944 KB
testcase_05 AC 73 ms
7,712 KB
testcase_06 AC 591 ms
7,972 KB
testcase_07 AC 582 ms
7,968 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 586 ms
7,976 KB
testcase_11 AC 587 ms
8,096 KB
testcase_12 AC 594 ms
7,972 KB
testcase_13 AC 583 ms
7,972 KB
testcase_14 AC 580 ms
7,968 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 2 ms
6,940 KB
testcase_17 AC 2 ms
6,944 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
testcase_21 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import (
	"fmt"
	"math"
	"sort"
	"strconv"
)

func main() {
	var n, k, a int
	_, _ = fmt.Scan(&n, &k)

	nums := make([]int, 0)
	for i := 0; i < n; i++ {
		_, _ = fmt.Scan(&a)
		if a <= k {
			nums = append(nums, a)
		}
	}

	sort.Slice(nums, func(i, j int) bool {
		return nums[i] > nums[j]
	})

	max := 0
	for i := 1; i < int(math.Pow(float64(2), float64(len(nums)))); i++ {
		b := fmt.Sprintf("%0"+strconv.Itoa(len(nums))+"b\n", i)
		sum := 0
		for i, v := range []rune(b) {
			if string(v) == "1" {
				sum += nums[i]
				if sum > k {
					break
				}
			}
		}
		if sum <= k && max < sum {
			max = sum
		}
	}

	fmt.Println(max)
}
0