結果

問題 No.3044 April Sum of Odd
ユーザー 👑 rin204rin204
提出日時 2021-08-29 16:35:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 73 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,304 KB
最終ジャッジ日時 2024-11-22 06:35:07
合計ジャッジ時間 1,838 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 40 ms
51,456 KB
testcase_03 AC 49 ms
60,800 KB
testcase_04 AC 53 ms
61,440 KB
testcase_05 AC 55 ms
62,720 KB
testcase_06 AC 56 ms
63,872 KB
testcase_07 AC 47 ms
59,776 KB
testcase_08 AC 49 ms
60,288 KB
testcase_09 AC 59 ms
65,152 KB
testcase_10 AC 73 ms
82,304 KB
testcase_11 AC 66 ms
77,824 KB
testcase_12 AC 41 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
alst = list(map(int, input().split()))
cnt = 0
tot = 0
for a in alst:
    if a % 2 == 1:
        cnt += 1
        tot += a
    else:
        if cnt >= m:
            print(tot)
        cnt = 0
        tot = 0
        
if cnt >= m:
    print(tot)
0