結果

問題 No.3044 April Sum of Odd
ユーザー pypypymipypypymi
提出日時 2022-02-20 19:32:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 2,000 ms
コード長 335 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-06-29 10:55:34
合計ジャッジ時間 1,778 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,456 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,712 KB
testcase_03 AC 55 ms
62,592 KB
testcase_04 AC 60 ms
63,872 KB
testcase_05 AC 63 ms
66,048 KB
testcase_06 AC 68 ms
67,200 KB
testcase_07 AC 50 ms
61,056 KB
testcase_08 AC 53 ms
61,440 KB
testcase_09 AC 67 ms
67,200 KB
testcase_10 AC 77 ms
89,600 KB
testcase_11 AC 65 ms
79,488 KB
testcase_12 AC 39 ms
51,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
an = list(map(int,input().split()))
result = []
tmp = []
for i in range(len(an)):
    #print(an[i])
    if an[i]%2==1:
        tmp.append(an[i])
    else:
        if len(tmp)>=m:
            result.append(tmp)
        tmp = []
if len(tmp)>=m:
    result+=[tmp]
for i in result:
    print(sum(i))
        
0