結果

問題 No.5 数字のブロック
ユーザー h66_34h66_34
提出日時 2016-12-24 17:34:56
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 371 bytes
コンパイル時間 835 ms
コンパイル使用メモリ 54,620 KB
実行使用メモリ 8,448 KB
最終ジャッジ日時 2024-05-08 13:11:47
合計ジャッジ時間 7,591 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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