結果
| 問題 | No.5 数字のブロック |
| コンテスト | |
| ユーザー |
Kura
|
| 提出日時 | 2019-02-20 15:47:59 |
| 言語 | C++11 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 336 bytes |
| 記録 | |
| コンパイル時間 | 589 ms |
| コンパイル使用メモリ | 82,668 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-07 05:12:20 |
| 合計ジャッジ時間 | 2,034 ms |
|
ジャッジサーバーID (参考情報) |
judge1_1 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 1 WA * 33 |
ソースコード
#include<iostream>
#include<vector>
#include<algorithm>
using namespace std;
int main(){
int a,b;
cin>>a>>b;
vector<int> c(b);
for(int i=0;i<b;i++){
cin>>c[i];
}
sort(c.end()-b,c.end());
int d=0;
for(int i=0;i<b;i++){
d+=c[i];
if(d>a){
cout<<i<<endl;
}
}
}
Kura