結果

問題 No.3044 April Sum of Odd
ユーザー e869120e869120
提出日時 2019-04-01 21:11:16
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 35 ms / 2,000 ms
コード長 406 bytes
コンパイル時間 590 ms
コンパイル使用メモリ 69,120 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-04 20:05:16
合計ジャッジ時間 1,099 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 4 ms
5,376 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 6 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 5 ms
5,376 KB
testcase_10 AC 35 ms
5,376 KB
testcase_11 AC 17 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
using namespace std;

long long N, M, A[1 << 18], s, c; vector<long long>vec;

int main() {
	cin >> N >> M;
	for (int i = 1; i <= N; i++) {
		cin >> A[i];
		if (A[i] % 2 == 0) {
			if (c >= M) vec.push_back(s);
			c = 0; s = 0;
		}
		else { c++; s += A[i]; }
	}
	if (c >= M) vec.push_back(s);

	for (int i = 0; i < vec.size(); i++) cout << vec[i] << endl;
	return 0;
}
0