結果

問題 No.3044 April Sum of Odd
ユーザー mlihua09mlihua09
提出日時 2020-08-23 16:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 324 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 83,840 KB
最終ジャッジ日時 2024-10-15 18:43:11
合計ジャッジ時間 2,254 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 50 ms
60,416 KB
testcase_04 AC 52 ms
61,312 KB
testcase_05 AC 55 ms
62,720 KB
testcase_06 AC 57 ms
63,616 KB
testcase_07 AC 49 ms
59,904 KB
testcase_08 AC 49 ms
60,288 KB
testcase_09 AC 59 ms
65,024 KB
testcase_10 AC 71 ms
83,840 KB
testcase_11 AC 67 ms
78,848 KB
testcase_12 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #


N, M = map(int, input().split())


A = list(map(int, input().split())) + [0]

ans = 0
count = 0


for a in A:
    
    if a % 2 == 1:
        
        ans += a
        count += 1
        
    else:
        
        if count >= M:
            
            print(ans)
            
        ans = 0
        count = 0
        
0