結果

問題 No.5 数字のブロック
ユーザー h66_34h66_34
提出日時 2016-12-24 17:34:56
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 371 bytes
コンパイル時間 594 ms
コンパイル使用メモリ 55,580 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-12-14 17:27:23
合計ジャッジ時間 40,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
using namespace std;

int main(){
  int Lmax;
  cin >> Lmax;
  int N;
  cin>> N;
  int W[N];
  for(int i=0;i<=N-1;i++){
    cin >> W[i];
      }
  int L=0;
  int j=0;
  int k=0;
  int kmax=0;
  while(L<Lmax){
    for(int i=0;i<=N-1;i++){
      if(W[i]==j){
	L=L+j;
	if(L<=Lmax){
	k=k+1;
	}
      }
    }
    j=j+1;
  }
  cout << k << endl;
return 0;
}
0