結果

問題 No.78 クジ付きアイスバー
ユーザー mogurockermogurocker
提出日時 2017-10-17 18:33:10
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 559 bytes
コンパイル時間 1,394 ms
コンパイル使用メモリ 159,804 KB
実行使用メモリ 10,024 KB
最終ジャッジ日時 2024-11-17 22:38:52
合計ジャッジ時間 95,538 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
9,888 KB
testcase_01 AC 1 ms
10,024 KB
testcase_02 AC 2 ms
10,016 KB
testcase_03 AC 1 ms
9,892 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 1,139 ms
6,816 KB
testcase_06 AC 2,947 ms
6,816 KB
testcase_07 AC 1,174 ms
6,820 KB
testcase_08 AC 1,802 ms
6,820 KB
testcase_09 TLE -
testcase_10 AC 3,099 ms
6,820 KB
testcase_11 AC 1,553 ms
6,816 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 2,172 ms
6,820 KB
testcase_16 AC 3,915 ms
6,816 KB
testcase_17 AC 4,578 ms
6,816 KB
testcase_18 AC 4,661 ms
6,820 KB
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 AC 1 ms
6,820 KB
testcase_24 AC 2 ms
6,816 KB
testcase_25 AC 1 ms
6,820 KB
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 2 ms
6,816 KB
testcase_28 AC 1 ms
6,816 KB
testcase_29 AC 2 ms
6,820 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,816 KB
testcase_32 AC 2 ms
6,816 KB
testcase_33 AC 6 ms
6,820 KB
testcase_34 AC 1,445 ms
6,820 KB
testcase_35 AC 1,995 ms
6,820 KB
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i, n) for(int i = 0; i < (n); i++)
#define MEM(a, x) memset(a, x, sizeof(a))
#define ALL(a) a.begin(), a.end()
#define UNIQUE(a) a.erase(unique(ALL(a)), a.end())
typedef long long ll;
typedef pair<int, int> P;

int n, k;
string s;

int main(int argc, char const *argv[]) {
	ios_base::sync_with_stdio(false);
	cin >> n >> k >> s;
	int cur = 0, ans = 0;
	FOR(i, k) {
		if (cur == 0) {
			ans++;
			cur += s[i%n]-'0';
		}
		else {
			cur--;
			cur += s[i%n]-'0';
		}
	}
	cout << ans << endl;
	return 0;
}
0