結果

問題 No.3044 April Sum of Odd
ユーザー YuSuzuYuSuzu
提出日時 2020-04-04 11:35:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 264 bytes
コンパイル時間 124 ms
コンパイル使用メモリ 10,584 KB
実行使用メモリ 19,088 KB
最終ジャッジ日時 2023-09-16 05:32:23
合計ジャッジ時間 1,152 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,928 KB
testcase_01 AC 16 ms
7,928 KB
testcase_02 AC 16 ms
7,832 KB
testcase_03 AC 20 ms
8,620 KB
testcase_04 AC 21 ms
8,704 KB
testcase_05 AC 19 ms
8,720 KB
testcase_06 AC 20 ms
9,108 KB
testcase_07 AC 17 ms
8,128 KB
testcase_08 AC 18 ms
8,604 KB
testcase_09 AC 19 ms
8,656 KB
testcase_10 AC 69 ms
19,088 KB
testcase_11 AC 46 ms
9,912 KB
testcase_12 AC 15 ms
7,788 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:
        if ans>0 and odd >= m:
            print(ans)
        ans=0
        odd=0
    else:
        ans+=i
        odd+=1
if odd >= m and ans!=0:
    print(ans)
0