結果

問題 No.8044 April Sum of Odd
ユーザー mtsdmtsd
提出日時 2019-04-01 21:18:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 887 bytes
コンパイル時間 692 ms
コンパイル使用メモリ 84,092 KB
実行使用メモリ 13,636 KB
最終ジャッジ日時 2024-11-26 10:42:27
合計ジャッジ時間 4,300 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
13,636 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 WA -
testcase_03 AC 4 ms
6,820 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 TLE -
testcase_11 AC 16 ms
6,820 KB
testcase_12 AC 2 ms
10,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <string>
#include <cmath>
#include <algorithm>
#include <utility>
#include <queue>
#include <set>
#include <map>
#include <deque>
#include <iomanip>
#include <cstdio>
#include <stack>
#include <numeric>

using namespace std;
typedef  long long ll;
typedef pair<int,int> PII;
typedef vector<int> VI;
typedef vector<VI> VVI;
#define  MP make_pair
#define  PB push_back
#define inf 1000000007
#define mod 1000000007
#define rep(i,n) for(int i=0;i<(int)(n);++i)

int main(){
    int n,m;
    cin >> n >> m;
    vector<ll> a(n);
    rep(i,n)cin >> a[i];
    rep(i,n){
        ll sm = 0;
        int cnt = 0;
        for(int j=i;j<n;j++){
            if(a[j]%2==1){
                cnt++;
                sm += a[j];
            }else{
                break;
            }
            if(cnt>=m)cout << sm << endl;
        }
    }
    return 0;
}
0