結果
問題 | No.3044 April Sum of Odd |
ユーザー | mtsd |
提出日時 | 2019-04-01 21:18:50 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 887 bytes |
コンパイル時間 | 761 ms |
コンパイル使用メモリ | 82,652 KB |
実行使用メモリ | 10,624 KB |
最終ジャッジ日時 | 2024-05-04 20:29:28 |
合計ジャッジ時間 | 4,393 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | AC | 4 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | TLE | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
ソースコード
#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; }