結果

問題 No.1765 While Shining
ユーザー H3PO4H3PO4
提出日時 2021-11-26 22:37:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 376 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,860 KB
最終ジャッジ日時 2024-06-29 18:15:44
合計ジャッジ時間 3,846 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 31 ms
10,880 KB
testcase_07 AC 29 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 115 ms
13,356 KB
testcase_10 AC 158 ms
14,360 KB
testcase_11 AC 138 ms
14,140 KB
testcase_12 AC 148 ms
13,824 KB
testcase_13 AC 138 ms
14,148 KB
testcase_14 AC 170 ms
14,852 KB
testcase_15 AC 162 ms
14,852 KB
testcase_16 AC 162 ms
14,856 KB
testcase_17 AC 162 ms
14,852 KB
testcase_18 AC 162 ms
14,852 KB
testcase_19 AC 164 ms
14,852 KB
testcase_20 AC 164 ms
14,852 KB
testcase_21 AC 163 ms
14,856 KB
testcase_22 AC 165 ms
14,860 KB
testcase_23 AC 164 ms
14,856 KB
testcase_24 AC 161 ms
14,856 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = tuple(map(int, input().split()))

ans = 0
for start in (0, 1):
    tmp = 0
    for i in range(start, N, 2):
        if A[i] == 1:
            tmp += 1
            ans += tmp
        else:
            tmp = 0
        if i + 1 < N:
            if A[i + 1] == 0:
                ans += tmp
            else:
                tmp = 0
    ans -= tmp
print(ans)
0