結果

問題 No.5 数字のブロック
ユーザー spb9876spb9876
提出日時 2017-09-29 11:17:17
言語 C++11
(gcc 13.3.0)
結果
WA  
実行時間 -
コード長 533 bytes
コンパイル時間 863 ms
コンパイル使用メモリ 55,668 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-15 19:48:04
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 33 ms
6,816 KB
testcase_04 AC 22 ms
6,820 KB
testcase_05 AC 54 ms
6,816 KB
testcase_06 AC 23 ms
6,820 KB
testcase_07 AC 16 ms
6,820 KB
testcase_08 AC 29 ms
6,820 KB
testcase_09 AC 6 ms
6,816 KB
testcase_10 AC 66 ms
6,820 KB
testcase_11 AC 15 ms
6,816 KB
testcase_12 AC 35 ms
6,820 KB
testcase_13 AC 52 ms
6,820 KB
testcase_14 AC 1 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 57 ms
6,816 KB
testcase_17 AC 80 ms
6,816 KB
testcase_18 AC 70 ms
6,816 KB
testcase_19 AC 88 ms
6,816 KB
testcase_20 WA -
testcase_21 AC 2 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 WA -
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 21 ms
6,816 KB
testcase_30 AC 7 ms
6,820 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 1 ms
6,816 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