結果

問題 No.3044 April Sum of Odd
ユーザー YU HiroseYU Hirose
提出日時 2024-05-01 00:41:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 322 bytes
コンパイル時間 71 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,388 KB
最終ジャッジ日時 2024-05-01 00:41:29
合計ジャッジ時間 1,051 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,880 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 26 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 81 ms
22,388 KB
testcase_11 AC 55 ms
12,624 KB
testcase_12 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, m = map(int, input().split())
a = list(map(int, input().split()))
a.append(0)

p = []
flag = False
nsum = 0
for i in range(n+1):
    if a[i] % 2 == 1:
        flag = True
        nsum += a[i]
    else:
        if flag:
            p.append(nsum)
            flag = False
            nsum = 0
for pi in p:
    print(pi)
0