結果

問題 No.8044 April Sum of Odd
ユーザー aa
提出日時 2019-04-01 23:18:10
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 404 bytes
コンパイル時間 1,494 ms
コンパイル使用メモリ 167,444 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-27 04:24:02
合計ジャッジ時間 2,201 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"

using namespace std;

void solve()
{
	long a, b, cur = 0, ser = 0;
	cin >> a >> b;
	while(a--)
	{
		long x;
		cin >> x;
		if (x & 1)
		{
			cur += x;
			ser++;
		}
		else
		{
			if (ser >= b)
			{
				cout << cur << endl;
			}
			cur = 0;
			ser = 0;
		}
	}
	if (ser >= b)
	{
		cout << cur << endl;
	}
}

int main()
{
	solve();
	//cout << "yui(*-v・)yui" << endl;
	return 0;
}
0