結果

問題 No.78 クジ付きアイスバー
ユーザー mokomoko
提出日時 2018-01-24 14:00:08
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 749 bytes
コンパイル時間 1,319 ms
コンパイル使用メモリ 158,852 KB
実行使用メモリ 13,880 KB
最終ジャッジ日時 2024-06-07 21:33:49
合計ジャッジ時間 62,796 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 1 ms
5,376 KB
testcase_04 AC 1 ms
5,376 KB
testcase_05 AC 935 ms
5,376 KB
testcase_06 AC 2,470 ms
5,376 KB
testcase_07 AC 1,015 ms
5,376 KB
testcase_08 AC 1,504 ms
5,376 KB
testcase_09 AC 4,956 ms
5,376 KB
testcase_10 AC 2,556 ms
5,376 KB
testcase_11 AC 1,301 ms
5,376 KB
testcase_12 AC 4,325 ms
5,376 KB
testcase_13 AC 4,644 ms
5,376 KB
testcase_14 AC 4,647 ms
5,376 KB
testcase_15 AC 1,838 ms
5,376 KB
testcase_16 AC 3,250 ms
5,376 KB
testcase_17 AC 3,789 ms
5,376 KB
testcase_18 AC 3,889 ms
5,376 KB
testcase_19 AC 4,626 ms
5,376 KB
testcase_20 AC 4,904 ms
5,376 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 2 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 1 ms
5,376 KB
testcase_29 AC 2 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 1 ms
5,376 KB
testcase_32 AC 2 ms
5,376 KB
testcase_33 AC 5 ms
5,376 KB
testcase_34 AC 1,219 ms
5,376 KB
testcase_35 AC 1,684 ms
5,376 KB
testcase_36 AC 4,634 ms
5,376 KB
testcase_37 TLE -
testcase_38 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
//#include <math.h>
using namespace std;

#define INF 1.1e9
#define LINF 1.1e18
#define FOR(i,a,b) for (int i=(a);i<(b);++i)
#define REP(i,n) FOR(i,0,n)
#define ALL(v) (v).begin(),(v).end()
#define pb push_back
#define pf push_front
#define fi first
#define se second
#define BIT(x,n) bitset<n>(x)
#define PI 3.14159265358979323846

typedef long long ll;
typedef pair<int,int> P;
typedef pair<int,P> PP;

//-----------------------------------------------------------------------------

int n,k;
string s;

int main() {
	cin.tie(0);
	ios::sync_with_stdio(false);

	cin>>n>>k>>s;
	int i=0,cnt=0,tmp=0;
	while(i<k) {
		if(tmp==0) cnt++;
		else tmp--;
		int now=s[i%n]-'0';
		tmp+=now;
		i++;
	}
	cout<<cnt<<endl;

	return 0;
}
0