結果

問題 No.3044 April Sum of Odd
ユーザー KiYugadgeterKiYugadgeter
提出日時 2019-04-01 22:45:00
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 505 bytes
コンパイル時間 520 ms
コンパイル使用メモリ 63,488 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-05 08:31:43
合計ジャッジ時間 2,352 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 RE -
testcase_03 RE -
testcase_04 RE -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 WA -
testcase_12 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function 'int main()':
main.cpp:7:12: warning: 'n' is used uninitialized [-Wuninitialized]
    7 |     int v[n];
      |            ^
main.cpp:4:9: note: 'n' declared here
    4 |     int n, m;
      |         ^

ソースコード

diff #

#include <iostream>

int main() {
    int n, m;
    int u = 0;
    int x = 0;
    int v[n];
    std::cin >> n >> m;
    for (int i = 0; i < n; i++) {
        std::cin >> v[i];
        if (v[i] % 2 != 0) {
            u += v[i];
            x++;
        }
        else if (v[i] % 2 == 0) {
            if (x >= m) {
                std::cout << u << std::endl;
            }
            u = 0;
            x = 0;
        }
    }
    if (x >= m) {
        std::cout << u << std::endl;
    }
    return 0;
}
0