結果

問題 No.3044 April Sum of Odd
ユーザー ibukitiibukiti
提出日時 2021-10-05 17:40:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 70 ms / 2,000 ms
コード長 227 bytes
コンパイル時間 109 ms
コンパイル使用メモリ 10,660 KB
実行使用メモリ 18,812 KB
最終ジャッジ日時 2023-09-30 08:32:59
合計ジャッジ時間 1,208 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,816 KB
testcase_01 AC 14 ms
7,780 KB
testcase_02 AC 14 ms
7,812 KB
testcase_03 AC 18 ms
8,876 KB
testcase_04 AC 20 ms
9,056 KB
testcase_05 AC 19 ms
8,816 KB
testcase_06 AC 20 ms
9,028 KB
testcase_07 AC 17 ms
8,348 KB
testcase_08 AC 18 ms
8,728 KB
testcase_09 AC 20 ms
8,948 KB
testcase_10 AC 70 ms
18,812 KB
testcase_11 AC 47 ms
9,832 KB
testcase_12 AC 15 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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