結果

問題 No.78 クジ付きアイスバー
ユーザー fiordfiord
提出日時 2015-06-20 23:22:12
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 563 bytes
コンパイル時間 1,616 ms
コンパイル使用メモリ 157,916 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 05:01:55
合計ジャッジ時間 2,445 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n,k;
string s;
int passto;
int simurate(int pass,int end){
	int ans=0;
	for(int i=0;i<end;i++){
		if(pass)	pass--;
		else ans++;
		if(s[i]=='1') pass++;
		else if(s[i]=='2')	pass+=2;
	}
	passto=pass;
	return ans;
}
int main(){
	cin>>n>>k;
	cin>>s;
	int how=k%n;
	if(how==0)	how=n;
	int start=simurate(0,how);
	if(k>n){
		int cnt=0;
		for(int i=0;i<n;i++){
			if(s[i]=='1')	cnt++;
			else if(s[i]=='2')	cnt+=2;
		}
		int need=0;
		if(cnt<n)	need=n-cnt;
		start+=need*((k-1)/n);
	}
	cout<<start<<endl;
	return 0;
}
0