結果

問題 No.1765 While Shining
ユーザー ygd.ygd.
提出日時 2021-12-02 00:37:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,320 bytes
コンパイル時間 134 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,268 KB
最終ジャッジ日時 2024-07-05 01:44:48
合計ジャッジ時間 4,225 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,880 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 WA -
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 104 ms
18,104 KB
testcase_10 AC 148 ms
21,196 KB
testcase_11 AC 124 ms
20,060 KB
testcase_12 AC 144 ms
20,672 KB
testcase_13 AC 123 ms
19,904 KB
testcase_14 AC 155 ms
22,140 KB
testcase_15 AC 156 ms
22,016 KB
testcase_16 AC 158 ms
22,012 KB
testcase_17 AC 158 ms
22,012 KB
testcase_18 AC 157 ms
22,140 KB
testcase_19 AC 157 ms
22,132 KB
testcase_20 AC 156 ms
22,136 KB
testcase_21 AC 157 ms
22,268 KB
testcase_22 WA -
testcase_23 AC 158 ms
22,012 KB
testcase_24 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
#input = sys.stdin.readline #文字列につけてはダメ
input = sys.stdin.buffer.readline #文字列につけてはダメ
#sys.setrecursionlimit(1000000)
#import bisect
#import itertools
#import random
#from heapq import heapify, heappop, heappush
#from collections import defaultdict
#from collections import deque
#import copy

class UnionFind(object):
    def __init__(self, n=1):
        self.par = [i for i in range(n)]
        self.rank = [0 for _ in range(n)]
        self.size = [1 for _ in range(n)]
    def find(self, x):
        """
        x が属するグループを探索して親を出す。
        """
        if self.par[x] == x:
            return x
        else:
            self.par[x] = self.find(self.par[x])
            return self.par[x]
    def union(self, x, y):
        """
        x と y のグループを結合
        """
        x = self.find(x)
        y = self.find(y)
        if x != y:
            if self.rank[x] < self.rank[y]:
                x, y = y, x
            if self.rank[x] == self.rank[y]:
                self.rank[x] += 1
            self.par[y] = x
            self.size[x] += self.size[y]
    def is_same(self, x, y):
        """
        x と y が同じグループか否か
        """
        return self.find(x) == self.find(y)
    def get_size(self, x):
        """
        x が属するグループの要素数
        """
        x = self.find(x)
        return self.size[x]


def main():
    N = int(input())
    A = [0] + list(map(int,input().split()))
    B = []
    temp = []
    for i in range(1,N+1):
        if A[i] == 0:
            if A[i-1] == 1:
                temp.append(A[i])
            else:
                B.append(temp)
                temp = []
        else:
            if A[i-1] == 0:
                temp.append(A[i])
            else:
                B.append(temp)
                temp = [A[i]]
    B.append(temp)
    #print(B)
    ans = 0
    for i in range(len(B)):
        if len(B[i])%2 == 1:
            x = (len(B[i])+1)//2
            ans += x**2
        else:
            x = len(B[i])//2
            ans += (1+x)*x
        #print(ans)
    
    if A[-1] == 0:
        print(ans)
    else:
        v = (len(B[-1])+1)//2
        ans -= v
        print(ans)


        


if __name__ == '__main__':
    main()
0