結果

問題 No.5 数字のブロック
ユーザー spb9876spb9876
提出日時 2017-09-29 11:17:17
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 428 ms
コンパイル使用メモリ 56,080 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-04-27 16:14:20
合計ジャッジ時間 2,109 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 32 ms
6,940 KB
testcase_04 AC 21 ms
6,940 KB
testcase_05 AC 54 ms
6,940 KB
testcase_06 AC 24 ms
6,944 KB
testcase_07 AC 16 ms
6,944 KB
testcase_08 AC 29 ms
6,944 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 67 ms
6,944 KB
testcase_11 AC 15 ms
6,940 KB
testcase_12 AC 36 ms
6,944 KB
testcase_13 AC 52 ms
6,944 KB
testcase_14 AC 1 ms
6,940 KB
testcase_15 AC 1 ms
6,940 KB
testcase_16 AC 57 ms
6,944 KB
testcase_17 AC 79 ms
6,940 KB
testcase_18 AC 70 ms
6,944 KB
testcase_19 AC 89 ms
6,940 KB
testcase_20 WA -
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 1 ms
6,940 KB
testcase_23 AC 2 ms
6,940 KB
testcase_24 AC 2 ms
6,940 KB
testcase_25 AC 2 ms
6,944 KB
testcase_26 AC 1 ms
6,944 KB
testcase_27 WA -
testcase_28 AC 2 ms
6,940 KB
testcase_29 AC 22 ms
6,940 KB
testcase_30 AC 7 ms
6,940 KB
testcase_31 AC 2 ms
6,944 KB
testcase_32 AC 2 ms
6,944 KB
testcase_33 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<utility>
using namespace std;

int main(){
  int l,n,sw=1;
  cin >> l >> n;
  int w[n];
  for(int i=0;i<n;i++)
    cin >> w[i];
  while(sw){
    sw=0;
    for(int i=0;i<n-1;i+=2){
      if(w[i]>w[i+1]){
        swap(w[i],w[i+1]);
        sw=1;
      }
    }
    for(int i=1;i<n-1;i+=2){
      if(w[i]>w[i+1]){
        swap(w[i],w[i+1]);
        sw=1;
      }
    }
  }
  int i,sum=0,count=0;
  for(i=0;sum<=l;i++){
    sum+=w[i];
    count++;
  }
  cout << count-1 << "\n";
  return 0;
}
0