結果

問題 No.5 数字のブロック
ユーザー pinebookspinebooks
提出日時 2017-08-26 16:43:22
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 477 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 44,032 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-23 17:13:27
合計ジャッジ時間 1,224 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 WA -
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 2 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 3 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 3 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 3 ms
5,376 KB
testcase_17 AC 3 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 3 ms
5,376 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 1 ms
5,376 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:16:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   16 |   scanf("%d%d", &L, &N);
      |   ~~~~~^~~~~~~~~~~~~~~~
main.cpp:20:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   20 |     scanf("%d", &a);
      |     ~~~~~^~~~~~~~~~

ソースコード

diff #

/*
 * 5.cpp
 *
 *  Created on: 2017/08/26
 *      Author: pinebooks
 */

#include <cstdio>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
  int L, N;
  scanf("%d%d", &L, &N);
  vector<int> W;
  for (int i = 0; i < N; ++i) {
    int a;
    scanf("%d", &a);
    W.push_back(a);
  }
  sort(W.begin(), W.end());
  int sum = 0;
  int i = 0;
  while (true) {
    if (sum + W[i + 1] > L)
      break;
    ++i;
    sum += W[i];
  }
  printf("%d", i + 1);
}
0