結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
gmnexe
|
| 提出日時 | 2019-02-25 16:27:25 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 302 bytes |
| 記録 | |
| コンパイル時間 | 1,272 ms |
| コンパイル使用メモリ | 178,056 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-06-01 03:12:16 |
| 合計ジャッジ時間 | 2,756 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 27 WA * 7 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
typedef pair<int,int> PII;
int main(){
int l,n,a[10000];
cin>>l>>n;
for (int i = 0; i < n; ++i){
cin>>a[i];
}
sort(a,a+n);
int total=0,cnt=0;
for (int i = 0; i < n; ++i){
if(total+a[i]<l){
total+=a[i];
cnt++;
}
}
cout<<cnt<<endl;
}
gmnexe