結果
問題 | No.8044 April Sum of Odd |
ユーザー | akakimidori |
提出日時 | 2019-04-01 21:14:12 |
言語 | C (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 13 ms / 2,000 ms |
コード長 | 621 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 29,824 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-26 10:24:27 |
合計ジャッジ時間 | 666 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
#include<stdio.h> #include<stdlib.h> #include<stdint.h> #include<inttypes.h> typedef int32_t i32; typedef int64_t i64; void run (void) { i32 n, m; scanf ("%" SCNi32 "%" SCNi32, &n, &m); i32 *a = (i32 *) calloc (n, sizeof (i32)); for (i32 i = 0; i < n; ++i) { scanf ("%" SCNi32, a + i); } i32 l = 0; while (l < n) { if (a[l] % 2 == 0) { l++; continue; } i64 sum = a[l]; i32 r = l + 1; while (r < n && a[r] % 2 == 1) { sum += a[r++]; } if (r - l >= m) { printf ("%" PRIi64 "\n", sum); } l = r; } } int main (void) { run (); return 0; }