結果

問題 No.1219 Mancala Combo
ユーザー titiatitia
提出日時 2020-09-04 21:44:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 823 bytes
コンパイル時間 952 ms
コンパイル使用メモリ 82,020 KB
実行使用メモリ 109,968 KB
最終ジャッジ日時 2024-11-26 12:24:50
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,696 KB
testcase_01 AC 34 ms
52,620 KB
testcase_02 AC 35 ms
51,904 KB
testcase_03 AC 36 ms
53,584 KB
testcase_04 AC 40 ms
60,184 KB
testcase_05 AC 36 ms
53,532 KB
testcase_06 AC 35 ms
52,904 KB
testcase_07 AC 33 ms
52,748 KB
testcase_08 AC 38 ms
57,992 KB
testcase_09 AC 33 ms
52,032 KB
testcase_10 AC 34 ms
51,680 KB
testcase_11 AC 35 ms
52,492 KB
testcase_12 AC 35 ms
53,868 KB
testcase_13 AC 33 ms
52,340 KB
testcase_14 AC 34 ms
52,860 KB
testcase_15 AC 33 ms
52,740 KB
testcase_16 AC 34 ms
53,216 KB
testcase_17 AC 72 ms
95,252 KB
testcase_18 AC 121 ms
100,444 KB
testcase_19 AC 66 ms
88,868 KB
testcase_20 AC 127 ms
103,116 KB
testcase_21 AC 60 ms
84,520 KB
testcase_22 AC 114 ms
95,872 KB
testcase_23 AC 77 ms
101,852 KB
testcase_24 AC 107 ms
93,144 KB
testcase_25 AC 64 ms
89,672 KB
testcase_26 AC 123 ms
99,984 KB
testcase_27 AC 76 ms
105,364 KB
testcase_28 AC 151 ms
109,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

seg_el=1<<((N+1).bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(N):
    SEG[i+seg_el+1]=A[i]

def getvalue(n,seg_el): # 一点の値を取得
    i=n+seg_el

    ANS=SEG[i]
    i>>=1 # 子ノードへ
    
    while i!=0:
        ANS+=SEG[i]
        i>>=1

    return ANS

def updates(l,r,x):
    L=l+seg_el
    R=r+seg_el

    while L<R:
        if L & 1:
            SEG[L]+=x
            L+=1

        if R & 1:
            R-=1
            SEG[R]+=x
        L>>=1
        R>>=1

for i in range(N,0,-1):
    V=getvalue(i,seg_el)
    #print(V,i)
    if V%i!=0:
        print("No")
        break
    else:
        updates(0,i,V//i)
else:
    print("Yes")
    
0