結果

問題 No.1765 While Shining
ユーザー ryusukeryusuke
提出日時 2022-01-30 17:48:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 1,072 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 102,144 KB
最終ジャッジ日時 2024-06-11 08:20:16
合計ジャッジ時間 3,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,968 KB
testcase_01 AC 36 ms
52,096 KB
testcase_02 AC 34 ms
51,712 KB
testcase_03 AC 36 ms
52,096 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
52,224 KB
testcase_08 AC 38 ms
52,864 KB
testcase_09 AC 78 ms
87,680 KB
testcase_10 AC 93 ms
100,992 KB
testcase_11 AC 86 ms
93,056 KB
testcase_12 AC 87 ms
97,280 KB
testcase_13 AC 82 ms
92,800 KB
testcase_14 AC 89 ms
101,760 KB
testcase_15 AC 91 ms
101,760 KB
testcase_16 AC 91 ms
102,144 KB
testcase_17 AC 89 ms
100,992 KB
testcase_18 AC 92 ms
101,632 KB
testcase_19 AC 91 ms
101,376 KB
testcase_20 AC 89 ms
100,992 KB
testcase_21 AC 91 ms
101,376 KB
testcase_22 AC 88 ms
100,992 KB
testcase_23 AC 88 ms
100,736 KB
testcase_24 AC 77 ms
96,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int, input().split()))

def calc(n: int, v: int) -> int:
    '溜まった分を計算する'
    if v == 0:
        if n % 2 == 0:
            return n // 2 * (n // 2 + 1)
        elif n % 2 == 1:
            return (n + 1) // 2 * ((n + 1) // 2 + 1) - (n + 1) // 2
    elif v == 1:
        if n % 2 == 0:
            return n // 2 * (n // 2 + 1) - n // 2
        elif n % 2 == 1:
            return (n + 1) // 2 * ((n + 1) // 2 + 1) - (n + 1) // 2 - (n + 1) // 2

ans, cnt, now = 0, 0, -1 # 答え・溜まってる数・今いた場所
for i in range(n):
    if now == -1:
        if a[i] == 1:
            now = 1
            cnt = 1
    else:
        if now == 0 and a[i] == 1:
                now = 1
                cnt += 1
        elif now == 1 and a[i] == 0:
                now = 0
                cnt += 1
        else:
            ans += calc(cnt, 0)
            if a[i] == 0:
                cnt, now = 0, -1
            elif a[i] == 1:
                cnt, now = 1, 1
    #print(i, a[i], cnt,ans)

ans += calc(cnt, 1)
print(ans)
0