結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
51,712 KB
testcase_01 AC 35 ms
51,968 KB
testcase_02 AC 34 ms
51,840 KB
testcase_03 AC 34 ms
52,224 KB
testcase_04 AC 35 ms
52,096 KB
testcase_05 AC 36 ms
51,968 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 35 ms
52,224 KB
testcase_08 AC 36 ms
52,480 KB
testcase_09 AC 62 ms
84,096 KB
testcase_10 AC 74 ms
98,432 KB
testcase_11 AC 68 ms
90,752 KB
testcase_12 AC 71 ms
94,336 KB
testcase_13 AC 65 ms
91,008 KB
testcase_14 AC 70 ms
98,688 KB
testcase_15 AC 76 ms
98,944 KB
testcase_16 AC 72 ms
98,432 KB
testcase_17 AC 77 ms
98,816 KB
testcase_18 AC 80 ms
98,816 KB
testcase_19 AC 75 ms
98,432 KB
testcase_20 AC 76 ms
99,072 KB
testcase_21 AC 77 ms
98,944 KB
testcase_22 AC 75 ms
98,944 KB
testcase_23 AC 78 ms
98,176 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:
        if i == n-2:
            cnt += 1
        else:
            cnt +=2
        ans += cnt
        i += 2
    else:
        if a[i] == 1:
            ans += 1 + cnt//2
        cnt = 0
        i += 1
#     print(ans)
print(ans)
0