結果
問題 | No.8044 April Sum of Odd |
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 10 |
ソースコード
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))