結果

問題 No.78 クジ付きアイスバー
ユーザー lunnearlunnear
提出日時 2019-01-09 14:30:17
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 452 bytes
コンパイル時間 459 ms
コンパイル使用メモリ 54,868 KB
実行使用メモリ 12,064 KB
最終ジャッジ日時 2024-11-24 00:55:19
合計ジャッジ時間 133,126 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
8,320 KB
testcase_01 AC 2 ms
10,016 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,609 ms
8,448 KB
testcase_06 TLE -
testcase_07 AC 3,727 ms
8,320 KB
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
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 16 ms
5,248 KB
testcase_34 AC 4,642 ms
5,248 KB
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

int main()
{
    int n, k;
    std::cin >> n >> k;
    
    char s[n + 1];
    std::cin >> s;
    
    int win = 0;
    int eat = 0;
    int buy = 0;
    
    int p = 0;
    
    while(eat < k)
    {
        if(win)
            win--;
        else
            buy++;
        
        eat++;
        
        win += s[p] - '0';
        
        p++;
        p %= n;
    }
    
    std::cout << buy << std::endl;
    
    return 0;
}
0