結果

問題 No.3044 April Sum of Odd
ユーザー ohanaohana
提出日時 2023-09-25 17:30:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 154 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,856 KB
最終ジャッジ日時 2024-07-18 13:45:12
合計ジャッジ時間 1,641 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,096 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 32 ms
51,840 KB
testcase_03 AC 50 ms
63,956 KB
testcase_04 AC 48 ms
67,968 KB
testcase_05 AC 52 ms
69,632 KB
testcase_06 AC 50 ms
70,528 KB
testcase_07 AC 42 ms
63,232 KB
testcase_08 AC 42 ms
64,256 KB
testcase_09 AC 56 ms
70,016 KB
testcase_10 AC 61 ms
89,856 KB
testcase_11 AC 53 ms
84,736 KB
testcase_12 AC 32 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import itertools

n, m = map(int, input().split())
A = list(map(int, input().split()))

G = [list(g) for k, g in itertools.groupby(A, key=lambda x: x % 2)]

for B in G:
    if len(B) >= m and B[0] % 2:
        print(sum(B))
0