結果

問題 No.3044 April Sum of Odd
ユーザー tsuyoiboytsuyoiboy
提出日時 2019-04-14 12:32:32
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 104 ms / 2,000 ms
コード長 346 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,260 KB
最終ジャッジ日時 2024-09-18 18:31:31
合計ジャッジ時間 1,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,624 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 35 ms
11,264 KB
testcase_04 AC 35 ms
11,392 KB
testcase_05 AC 36 ms
11,264 KB
testcase_06 AC 39 ms
11,520 KB
testcase_07 AC 32 ms
11,008 KB
testcase_08 AC 35 ms
11,264 KB
testcase_09 AC 37 ms
11,520 KB
testcase_10 AC 104 ms
22,260 KB
testcase_11 AC 77 ms
12,500 KB
testcase_12 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=[int(i) for i in input().split()]
streak=0
wa=0
odds=[]
for a in A:
    if a%2:#odd
        if streak==0:
            streak+=1
            wa+=a
        else:
            streak+=1
            wa+=a
    else:
        if streak>=M:
            print(wa)
        streak=0
        wa=0
if streak>=M:print(wa)
        
0