結果

問題 No.2424 Josouzai
ユーザー ゆうPゆうP
提出日時 2024-05-22 23:59:21
言語 Go
(1.22.1)
結果
TLE  
実行時間 -
コード長 338 bytes
コンパイル時間 12,460 ms
コンパイル使用メモリ 223,756 KB
実行使用メモリ 8,076 KB
最終ジャッジ日時 2024-12-20 18:40:21
合計ジャッジ時間 50,496 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,820 KB
testcase_01 AC 1 ms
6,820 KB
testcase_02 AC 1 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 587 ms
7,836 KB
testcase_05 TLE -
testcase_06 AC 1,954 ms
8,072 KB
testcase_07 AC 1,949 ms
8,068 KB
testcase_08 TLE -
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 522 ms
7,840 KB
testcase_11 AC 1,548 ms
8,072 KB
testcase_12 AC 1,311 ms
7,956 KB
testcase_13 AC 652 ms
7,836 KB
testcase_14 AC 1,159 ms
7,960 KB
testcase_15 AC 171 ms
6,816 KB
testcase_16 AC 1,890 ms
8,076 KB
testcase_17 AC 488 ms
6,820 KB
testcase_18 AC 577 ms
7,836 KB
testcase_19 AC 999 ms
7,828 KB
testcase_20 AC 1,926 ms
8,076 KB
testcase_21 AC 1,460 ms
7,956 KB
testcase_22 AC 644 ms
7,836 KB
testcase_23 AC 794 ms
7,836 KB
testcase_24 AC 350 ms
6,820 KB
testcase_25 TLE -
testcase_26 AC 1,454 ms
7,952 KB
testcase_27 TLE -
testcase_28 AC 1,777 ms
7,944 KB
testcase_29 AC 1,606 ms
7,948 KB
testcase_30 AC 380 ms
6,820 KB
testcase_31 AC 940 ms
7,828 KB
testcase_32 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

// No.2424 Josouzai
package main

import (
	"fmt"
	"sort"
)

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

	a := make([]int, n)
	for i := 0; i < n; i++ {
		fmt.Scan(&a[i])
	}
	sort.Ints(a)

	var ans1, ans2 = 0, k
	for j := 0; j < n; j++ {
		if ans2-a[j] < 0 {
			break
		}
		ans2 -= a[j]
		ans1++
	}
	fmt.Printf("%d %d\n", ans1, ans2)
}
0