結果

問題 No.78 クジ付きアイスバー
ユーザー woodsgreenwoodsgreen
提出日時 2022-01-13 00:28:17
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 264 bytes
コンパイル時間 2,371 ms
コンパイル使用メモリ 199,788 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-15 18:21:00
合計ジャッジ時間 134,119 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int n,k,cnt,ans;
char s[60];
int main(){
    cin>>n>>k>>s;
    for(int i=0;k>0;i=(i+1)%n,--k){
        if(cnt) --cnt;
        else ++ans;
        cnt+=s[i]-'0';
    }
    cout<<ans<<endl;
    return 0;
}
0