結果

問題 No.5 数字のブロック
ユーザー tadano_amoatadano_amoa
提出日時 2021-07-15 18:40:13
言語 C
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 695 bytes
コンパイル時間 941 ms
コンパイル使用メモリ 28,416 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 19:20:26
合計ジャッジ時間 2,708 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 1 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 72 ms
5,376 KB
testcase_04 AC 14 ms
5,376 KB
testcase_05 WA -
testcase_06 AC 50 ms
5,376 KB
testcase_07 AC 34 ms
5,376 KB
testcase_08 AC 59 ms
5,376 KB
testcase_09 AC 9 ms
5,376 KB
testcase_10 AC 119 ms
5,376 KB
testcase_11 AC 29 ms
5,376 KB
testcase_12 AC 78 ms
5,376 KB
testcase_13 AC 104 ms
5,376 KB
testcase_14 AC 1 ms
5,376 KB
testcase_15 WA -
testcase_16 AC 124 ms
5,376 KB
testcase_17 AC 169 ms
5,376 KB
testcase_18 AC 138 ms
5,376 KB
testcase_19 AC 190 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 1 ms
5,376 KB
testcase_25 AC 1 ms
5,376 KB
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 WA -
testcase_30 WA -
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
testcase_33 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
int main(void)
{

  int block[10000];
  int L,N,j,k,i=0;
  int a=0;

  
  scanf("%d",&L);
  while(L<1||L>10000){
    scanf("%d",&L);
  }
  
  scanf("%d",&N);
  while(i<N){
    scanf("%d",&block[i]);
    i++;
  }

  for(i=0;i<N;i++){
    for(j=i+1;j<N;j++){
      if(block[i]>block[j]){
        k=block[i];
        block[i]=block[j];
        block[j]=k;
      }
    }
  }

  i=0;

  if(N==1){
    if(L>=block[0]){
      printf("%d\n",1);
    }
    else{
      printf("%d\n",0);
    }
  }
  else{
    for(i=0;i<N;i++){
      a+=block[i];
      if(a>=L){
        printf("%d\n",i);
        break;
      }
      if(i==N-1){
        printf("%d\n",N);
      }
    }
  }

return 0;
}
0