結果

問題 No.8044 April Sum of Odd
ユーザー TiramisterTiramister
提出日時 2019-04-01 21:55:44
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 62,856 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-11-26 22:36:25
合計ジャッジ時間 1,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 10
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>

using lint = long long;

int main() {
    int N, M;
    std::cin >> N >> M;

    lint sum = 0;
    int cnt = 0;
    for (int i = 0; i < N; ++i) {
        lint a;
        std::cin >> a;
        if (a & 1) {
            sum += a;
            ++cnt;
        } else {
            if (cnt >= M) std::cout << sum << std::endl;
            cnt = 0;
            sum = 0;
        }
    }
    if (cnt >= M) std::cout << sum << std::endl;
    return 0;
}
0