結果

問題 No.1219 Mancala Combo
ユーザー uni_pythonuni_python
提出日時 2020-09-05 16:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 88 ms / 2,000 ms
コード長 956 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,276 KB
実行使用メモリ 102,016 KB
最終ジャッジ日時 2024-11-28 20:52:20
合計ジャッジ時間 3,407 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,712 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
51,456 KB
testcase_03 AC 38 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 38 ms
52,352 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 38 ms
51,968 KB
testcase_08 AC 37 ms
51,712 KB
testcase_09 AC 38 ms
51,712 KB
testcase_10 AC 38 ms
51,712 KB
testcase_11 AC 38 ms
51,456 KB
testcase_12 AC 38 ms
51,712 KB
testcase_13 AC 38 ms
51,712 KB
testcase_14 AC 39 ms
52,096 KB
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 38 ms
51,456 KB
testcase_17 AC 69 ms
88,192 KB
testcase_18 AC 73 ms
88,960 KB
testcase_19 AC 66 ms
84,480 KB
testcase_20 AC 77 ms
91,648 KB
testcase_21 AC 63 ms
81,152 KB
testcase_22 AC 72 ms
85,376 KB
testcase_23 AC 75 ms
95,360 KB
testcase_24 AC 66 ms
82,432 KB
testcase_25 AC 65 ms
84,224 KB
testcase_26 AC 75 ms
89,088 KB
testcase_27 AC 80 ms
100,480 KB
testcase_28 AC 88 ms
102,016 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=sys.stdin.readline
def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

"""
右側に影響を与えない,左側から見てできるならやるを繰り返す?
O(N^2)になりそう

各マスには,右側にある「石のあるます」の数だけ石が増えることになる,それがiで割り切れればOK
いや,自分より右のますで2回操作するますがあるかもしれないから違う,右から見て行けばわかるか


"""

def main():
    mod=10**9+7
    N=I()
    A=[0]+LI()
    
    for i in range(N+1):
        if A[i]>i:
            print("No")
            exit()
    
    flag=1
    cnt=0
    for i in range(N,0,-1):
        a=A[i]+cnt
        if a%i==0:
            cnt+=a//i
        else:
            flag=0
            break

        
    if flag==1:
        print("Yes")
    else:
        print("No")
    


main()
0