結果
問題 | No.3044 April Sum of Odd |
ユーザー | titiy |
提出日時 | 2019-04-03 14:53:33 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 147 ms / 2,000 ms |
コード長 | 348 bytes |
コンパイル時間 | 256 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 21,668 KB |
最終ジャッジ日時 | 2024-06-01 06:06:45 |
合計ジャッジ時間 | 1,659 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
10,624 KB |
testcase_01 | AC | 31 ms
10,752 KB |
testcase_02 | AC | 30 ms
10,624 KB |
testcase_03 | AC | 36 ms
11,264 KB |
testcase_04 | AC | 37 ms
11,648 KB |
testcase_05 | AC | 37 ms
11,392 KB |
testcase_06 | AC | 40 ms
11,520 KB |
testcase_07 | AC | 33 ms
10,880 KB |
testcase_08 | AC | 35 ms
11,264 KB |
testcase_09 | AC | 38 ms
11,392 KB |
testcase_10 | AC | 147 ms
21,668 KB |
testcase_11 | AC | 87 ms
12,384 KB |
testcase_12 | AC | 30 ms
10,624 KB |
ソースコード
n,m=map(int,input().split()) a=[int(i) for i in input().split()] b=[] for i in range(n): #print(i,len(a)) if a[i]%2==0: if b!=[] and len(b)>=m: print(sum(b)) b=[] else: b+=[a[i]] if i==len(a)-1 and len(b)>=m: print(sum(b)) elif i==len(a)-1 and len(b)<m: exit()