結果
| 問題 |
No.8044 April Sum of Odd
|
| コンテスト | |
| ユーザー |
mtsd
|
| 提出日時 | 2019-04-01 21:18:50 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 887 bytes |
| コンパイル時間 | 692 ms |
| コンパイル使用メモリ | 84,092 KB |
| 実行使用メモリ | 13,636 KB |
| 最終ジャッジ日時 | 2024-11-26 10:42:27 |
| 合計ジャッジ時間 | 4,300 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 2 WA * 1 |
| other | AC * 3 WA * 6 TLE * 1 |
ソースコード
#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;
}
mtsd