結果

問題 No.5 数字のブロック
ユーザー ococonomy1ococonomy1
提出日時 2018-09-06 17:18:28
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 29,056 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-02 01:08:52
合計ジャッジ時間 1,500 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 AC 1 ms
5,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 26 ms
5,376 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 1 ms
5,376 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 1 ms
5,376 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 1 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 11 ms
5,376 KB
testcase_30 AC 3 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>

int main(void){
  int l,n,w[10001],swap;
  scanf("%d",&l); scanf("%d",&n);
  for(int i = 0; i < n; i++)scanf("%d",&w[i]);

  for(int i = 0; i < n; i++){
    int min = 10001,minpoint;
    for(int j = i; j < n; j++){
      if(min > w[j]){
        min = w[j];
        minpoint = j;
      }
    }
    swap = w[i];
    w[i] = w[minpoint];
    w[minpoint] = swap;
  }

  int sum = 0,count,check = 1;
  for(int i = 0; i < n; i++){
    if(sum >= l){
      break;
      check = 0;
    }
    sum += w[i];
    count++;
  }
  if(check == 1)printf("%d\n",count);
  else printf("%d\n",count - 1);
}
0