結果

問題 No.3044 April Sum of Odd
ユーザー zaki_chemtechzaki_chemtech
提出日時 2020-07-10 08:57:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 63 ms / 2,000 ms
コード長 367 bytes
コンパイル時間 158 ms
コンパイル使用メモリ 81,960 KB
実行使用メモリ 83,364 KB
最終ジャッジ日時 2024-10-09 19:55:30
合計ジャッジ時間 1,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,952 KB
testcase_01 AC 37 ms
52,336 KB
testcase_02 AC 37 ms
53,216 KB
testcase_03 AC 45 ms
61,620 KB
testcase_04 AC 46 ms
63,940 KB
testcase_05 AC 49 ms
63,876 KB
testcase_06 AC 51 ms
66,256 KB
testcase_07 AC 48 ms
61,544 KB
testcase_08 AC 44 ms
60,888 KB
testcase_09 AC 51 ms
65,028 KB
testcase_10 AC 63 ms
83,364 KB
testcase_11 AC 60 ms
79,552 KB
testcase_12 AC 38 ms
53,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())

a = list(map(int,input().split()))

memo_sum = 0

count = 0

anss = []

for i in range(n):
    if a[i]%2 == 1:
        count += 1
        memo_sum += a[i]
    else:
        if m <= count:
            anss.append(memo_sum)
        count = 0
        memo_sum = 0
if m <= count:
    anss.append(memo_sum)

for ans in anss:
    print(ans)
0