結果
| 問題 |
No.8044 April Sum of Odd
|
| コンテスト | |
| ユーザー |
やむなく
|
| 提出日時 | 2019-04-01 21:09:55 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 33 ms / 2,000 ms |
| コード長 | 583 bytes |
| コンパイル時間 | 1,582 ms |
| コンパイル使用メモリ | 166,684 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-11-26 10:09:45 |
| 合計ジャッジ時間 | 1,910 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 10 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
#define all(x) (x).begin(),(x).end()
#define SP <<" "<<
#define MOD 1000000007
#define IINF 1000000000
#define LINF 1000000000000000000
typedef long long LL;
typedef long double LD;
int main(){
int n,m;
cin >> n >> m;
LL total=0;
int count=0;
LL a;
for(int i=0;i<n;i++){
cin >> a;
if(a%2){
count++;
total+=a;
}else{
if(count!=0){
if(count>=m) cout << total << endl;
count=0;
total=0;
}
}
}
if(count!=0) if(count>=m) cout << total << endl;
return 0;
}
やむなく