結果

問題 No.3044 April Sum of Odd
ユーザー tomarint2tomarint2
提出日時 2019-04-01 21:29:18
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 282 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 82,176 KB
最終ジャッジ日時 2024-05-04 20:54:35
合計ジャッジ時間 1,594 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
51,584 KB
testcase_01 AC 45 ms
51,968 KB
testcase_02 AC 45 ms
51,840 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 70 ms
82,176 KB
testcase_11 AC 66 ms
77,312 KB
testcase_12 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
ans=[]
a1=0
cnt=0
for a in A:
    if a%2==1:
        a1+=a
        cnt+=1
    else:
        if a1!=0 and cnt>=M:
            ans.append(a1)
        a1=0
if a1!=0 and cnt>=M:
    ans.append(a1)
for a in ans:
    print(a)
0