結果

問題 No.1765 While Shining
ユーザー SidewaysOwlSidewaysOwl
提出日時 2021-11-26 22:38:20
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 306 bytes
コンパイル時間 150 ms
コンパイル使用メモリ 82,340 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-06-29 18:16:06
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 36 ms
52,296 KB
testcase_02 AC 37 ms
52,376 KB
testcase_03 AC 37 ms
52,712 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 37 ms
52,148 KB
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 AC 70 ms
91,956 KB
testcase_12 RE -
testcase_13 AC 72 ms
91,176 KB
testcase_14 AC 79 ms
99,804 KB
testcase_15 RE -
testcase_16 AC 79 ms
100,680 KB
testcase_17 AC 81 ms
99,380 KB
testcase_18 RE -
testcase_19 AC 81 ms
99,092 KB
testcase_20 AC 80 ms
98,916 KB
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
ans = 0
flg = a[0]
i = 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