結果

問題 No.1765 While Shining
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-26 22:41:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 100,080 KB
最終ジャッジ日時 2024-06-29 18:17:18
合計ジャッジ時間 2,595 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,088 KB
testcase_01 AC 32 ms
52,956 KB
testcase_02 AC 32 ms
52,304 KB
testcase_03 AC 32 ms
53,440 KB
testcase_04 WA -
testcase_05 AC 32 ms
52,948 KB
testcase_06 AC 32 ms
52,284 KB
testcase_07 AC 32 ms
51,832 KB
testcase_08 AC 33 ms
53,360 KB
testcase_09 AC 58 ms
85,508 KB
testcase_10 AC 72 ms
98,964 KB
testcase_11 AC 67 ms
90,612 KB
testcase_12 AC 71 ms
93,984 KB
testcase_13 AC 69 ms
90,944 KB
testcase_14 AC 75 ms
98,776 KB
testcase_15 AC 71 ms
99,836 KB
testcase_16 AC 72 ms
98,868 KB
testcase_17 AC 72 ms
99,212 KB
testcase_18 AC 71 ms
99,516 KB
testcase_19 AC 71 ms
98,520 KB
testcase_20 AC 71 ms
99,808 KB
testcase_21 AC 71 ms
98,504 KB
testcase_22 WA -
testcase_23 AC 71 ms
99,688 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0
i = 0
cnt = 0
while i <= n-2:
    if a[i] == 1 and a[i+1] == 0:
        cnt +=2
        ans += cnt
        i += 2
    else:
        if a[i] == 1:
            ans += 1 + cnt//2
        cnt = 0
        i += 1
#     print(ans)
print(ans)
0