結果

問題 No.1765 While Shining
ユーザー mkawa2mkawa2
提出日時 2021-11-26 22:31:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 972 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,268 KB
実行使用メモリ 128,812 KB
最終ジャッジ日時 2024-06-29 18:12:03
合計ジャッジ時間 2,746 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
51,680 KB
testcase_01 AC 33 ms
53,100 KB
testcase_02 AC 34 ms
52,144 KB
testcase_03 AC 38 ms
52,456 KB
testcase_04 AC 38 ms
53,020 KB
testcase_05 AC 38 ms
59,220 KB
testcase_06 AC 34 ms
52,680 KB
testcase_07 AC 35 ms
52,760 KB
testcase_08 AC 43 ms
62,264 KB
testcase_09 AC 72 ms
103,352 KB
testcase_10 AC 97 ms
127,892 KB
testcase_11 AC 82 ms
115,296 KB
testcase_12 AC 89 ms
120,604 KB
testcase_13 AC 86 ms
115,100 KB
testcase_14 AC 96 ms
127,892 KB
testcase_15 AC 98 ms
128,492 KB
testcase_16 AC 98 ms
128,156 KB
testcase_17 AC 93 ms
127,676 KB
testcase_18 AC 94 ms
128,348 KB
testcase_19 AC 94 ms
128,116 KB
testcase_20 AC 99 ms
127,432 KB
testcase_21 AC 100 ms
128,292 KB
testcase_22 AC 98 ms
127,424 KB
testcase_23 AC 99 ms
127,984 KB
testcase_24 AC 93 ms
128,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 18446744073709551615
# inf = 4294967295
# md = 10**9+7
md = 998244353

def solve(p):
    bb = [a if i & 1 == p else 1-a for i, a in enumerate(aa)]
    bb[-1] = 0
    for i in range(n-1)[::-1]:
        if bb[i]: bb[i] += bb[i+1]
    res = 0
    # print(p, bb)
    for i, b in enumerate(bb):
        if i & 1 == p: res += b
    return res

n = II()
aa = LI()
ans = solve(0)+solve(1)
print(ans)
0