結果

問題 No.78 クジ付きアイスバー
ユーザー RIGIHRIGIH
提出日時 2017-07-26 01:13:36
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 3,116 ms / 5,000 ms
コード長 596 bytes
コンパイル時間 801 ms
コンパイル使用メモリ 65,596 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-09 17:31:44
合計ジャッジ時間 44,485 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 1 ms
6,820 KB
testcase_05 AC 521 ms
6,816 KB
testcase_06 AC 1,355 ms
6,816 KB
testcase_07 AC 537 ms
6,820 KB
testcase_08 AC 829 ms
6,816 KB
testcase_09 AC 2,726 ms
6,816 KB
testcase_10 AC 1,424 ms
6,816 KB
testcase_11 AC 712 ms
6,820 KB
testcase_12 AC 2,366 ms
6,816 KB
testcase_13 AC 2,529 ms
6,816 KB
testcase_14 AC 2,548 ms
6,816 KB
testcase_15 AC 1,001 ms
6,820 KB
testcase_16 AC 1,793 ms
6,816 KB
testcase_17 AC 2,101 ms
6,816 KB
testcase_18 AC 2,135 ms
6,820 KB
testcase_19 AC 2,251 ms
6,816 KB
testcase_20 AC 2,458 ms
6,820 KB
testcase_21 AC 2,824 ms
6,816 KB
testcase_22 AC 2,544 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 AC 2 ms
6,816 KB
testcase_27 AC 1 ms
6,816 KB
testcase_28 AC 2 ms
6,816 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,820 KB
testcase_31 AC 1 ms
6,816 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 4 ms
6,820 KB
testcase_34 AC 588 ms
6,820 KB
testcase_35 AC 853 ms
6,820 KB
testcase_36 AC 2,211 ms
6,816 KB
testcase_37 AC 2,925 ms
6,820 KB
testcase_38 AC 3,116 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdio.h>
#include <cstring>
#include <math.h>
#include <algorithm>
#include <vector>
#define rep(i,n) for(int i=0;i<n;i++)
#define FOR(i,a,b) for(int i=a;i<b;i++)
#define ll long long
#define LL long long
#define mass 1000000007
using namespace std;
int keta(int n,int k){return (n/int(pow(10,double(k-1)))) % 10;} //nの下からk桁目


int main(){
	
	int n,k;
	cin>>n>>k;
	char s[51];
	cin>>s;
	int a=0;
	int c=0;
	int b=0;

	rep(i,k){
		if(a==0){
			c++;
		}else{
			a--;
		}
		a+=int(s[b])-48;
		b++;
		if(b==n){
			b=0;
		}
	}
	cout<<c<<endl;

	return 0;

}

0