結果

問題 No.3044 April Sum of Odd
ユーザー iwkjoseciwkjosec
提出日時 2019-04-01 23:22:52
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,219 bytes
コンパイル時間 2,866 ms
コンパイル使用メモリ 104,448 KB
実行使用メモリ 28,928 KB
最終ジャッジ日時 2024-05-05 09:05:49
合計ジャッジ時間 3,888 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 23 ms
18,944 KB
testcase_01 AC 23 ms
18,944 KB
testcase_02 AC 24 ms
18,944 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 29 ms
19,456 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 63 ms
28,928 KB
testcase_11 AC 48 ms
25,088 KB
testcase_12 AC 23 ms
18,944 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections.Generic;
using System.Linq;
using static System.Console;

class Program
{
    static void Main()
    {
        var NM = ReadLine().Split();
        var N = int.Parse(NM[0]);
        var M = int.Parse(NM[1]);
        var A = (ReadLine()).Split().Select(int.Parse).ToArray();

        var sum = new long[N + 1];
        for (int i = 0; i < N; i++)
        {
            sum[i + 1] = sum[i] + A[i];
        }

        var t = 0;
        var p = false;
        for (int s = 0; s < N; s++)
        {
            if (A[s] % 2 == 1)
            {

                if (p)
                {
                    p = true;
                }
                else
                {
                    t = s;
                    p = true;
                }
            }
            else
            {
                if (p)
                {
                    if (s - t + 1 >= M) WriteLine(sum[s] - sum[t]);
                    t = s;
                    p = false;
                }
                else
                {
                    t = s;
                    p = false;

                }
            }
        }
        if(p) if (N - t >= M) WriteLine(sum[N] - sum[t]);
    }
}
0