結果

問題 No.3044 April Sum of Odd
ユーザー YuSuzuYuSuzu
提出日時 2020-04-04 11:24:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 251 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 10,520 KB
実行使用メモリ 19,048 KB
最終ジャッジ日時 2023-09-16 05:32:14
合計ジャッジ時間 1,124 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,884 KB
testcase_01 AC 16 ms
7,992 KB
testcase_02 AC 15 ms
7,760 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 68 ms
19,048 KB
testcase_11 AC 44 ms
9,944 KB
testcase_12 AC 15 ms
7,828 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m=map(int,input().split())
a=list(map(int,input().split()))
ans=0
odd =0
for i in a:
    if i%2 != 0:
        ans+=i
        odd+=1
    else:
        if odd >= m:
            print(ans)
            ans=0
            odd=0
if odd >= m:
    print(ans)
0