結果

問題 No.5 数字のブロック
コンテスト
ユーザー arudo
提出日時 2026-05-18 13:53:38
言語 C++23(gnu拡張)
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++23 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 595 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,284 ms
コンパイル使用メモリ 337,808 KB
実行使用メモリ 6,400 KB
最終ジャッジ日時 2026-05-18 13:53:46
合計ジャッジ時間 7,047 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_1
純コード判定待ち
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 34
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <bits/stdc++.h> 

using i64 = long long; 
using u64 = unsigned long long; 
using u32 = unsigned; 

using u128 = unsigned __int128; 
using i128 = __int128; 

void solve() {
	int L, N; 
	std::cin >> L >> N;

	std::vector<int> W(N);
	for(int& x : W) std::cin >> x;

	std::sort(W.begin(), W.end());

	int ans = 0, sum = 0;

	for(int i = 0; i < N; i ++) {
		sum += W[i];
		if(sum > L) break;
		ans ++;
	}

	std::cout << ans << "\n";
} 

int main() { 
	std::ios::sync_with_stdio(false); 
	std::cin.tie(nullptr); 

	int T = 1; 
	//std::cin >> T; 

	while (T--) { 
		solve(); 
	} 
	return 0; 
}
0