結果

問題 No.3044 April Sum of Odd
ユーザー tomarint2tomarint2
提出日時 2019-04-01 21:26:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 252 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-05-04 20:48:48
合計ジャッジ時間 1,418 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,456 KB
testcase_01 AC 36 ms
51,584 KB
testcase_02 AC 36 ms
51,584 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 69 ms
82,432 KB
testcase_11 AC 59 ms
77,568 KB
testcase_12 AC 37 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,M=map(int,input().split())
A=list(map(int,input().split()))
ans=[]
a1=0
for a in A:
    if a%2==1:
        a1+=a
    else:
        if a1!=0:
            ans.append(a1)
            a1=0
if a1!=0:
    ans.append(a1)
    a1=0
for a in ans:
    print(a)
0