結果

問題 No.156 キャンディー・ボックス
ユーザー fura
提出日時 2020-03-14 17:13:18
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 322 bytes
コンパイル時間 2,210 ms
コンパイル使用メモリ 197,992 KB
最終ジャッジ日時 2025-01-09 06:49:07
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 30
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:21:18: warning: format ‘%d’ expects argument of type ‘int’, but argument 2 has type ‘std::__iterator_traits<__gnu_cxx::__normal_iterator<int*, std::vector<int> >, void>::difference_type’ {aka ‘long int’} [-Wformat=]
   21 |         printf("%d\n",count(a.begin(),a.end(),0));
      |                 ~^    ~~~~~~~~~~~~~~~~~~~~~~~~~~
      |                  |         |
      |                  int       std::__iterator_traits<__gnu_cxx::__normal_iterator<int*, std::vector<int> >, void>::difference_type {aka long int}
      |                 %ld
main.cpp:8:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    8 |         int n,m; scanf("%d%d",&n,&m);
      |                  ~~~~~^~~~~~~~~~~~~~
main.cpp:10:23: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   10 |         rep(i,n) scanf("%d",&a[i]);
      |                  ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>

#define rep(i,n) for(int i=0;i<(n);i++)

using namespace std;

int main(){
	int n,m; scanf("%d%d",&n,&m);
	vector<int> a(n);
	rep(i,n) scanf("%d",&a[i]);

	sort(a.begin(),a.end());


	rep(i,n){
		int x=min(a[i],m);
		a[i]-=x;
		m-=x;
	}

	printf("%d\n",count(a.begin(),a.end(),0));

	return 0;
}
0