結果

問題 No.1219 Mancala Combo
ユーザー buey_tbuey_t
提出日時 2023-03-19 12:31:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 162 ms / 2,000 ms
コード長 1,635 bytes
コンパイル時間 133 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 119,680 KB
最終ジャッジ日時 2024-09-18 13:43:40
合計ジャッジ時間 4,895 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
85,208 KB
testcase_01 AC 106 ms
85,144 KB
testcase_02 AC 108 ms
85,276 KB
testcase_03 AC 110 ms
85,180 KB
testcase_04 AC 110 ms
85,184 KB
testcase_05 AC 108 ms
84,912 KB
testcase_06 AC 115 ms
85,136 KB
testcase_07 AC 116 ms
85,240 KB
testcase_08 AC 112 ms
85,212 KB
testcase_09 AC 115 ms
85,308 KB
testcase_10 AC 116 ms
85,452 KB
testcase_11 AC 115 ms
85,280 KB
testcase_12 AC 113 ms
85,152 KB
testcase_13 AC 110 ms
85,228 KB
testcase_14 AC 115 ms
85,068 KB
testcase_15 AC 114 ms
85,196 KB
testcase_16 AC 125 ms
85,300 KB
testcase_17 AC 161 ms
109,712 KB
testcase_18 AC 157 ms
109,604 KB
testcase_19 AC 146 ms
106,956 KB
testcase_20 AC 162 ms
112,532 KB
testcase_21 AC 147 ms
105,036 KB
testcase_22 AC 146 ms
107,200 KB
testcase_23 AC 149 ms
115,080 KB
testcase_24 AC 147 ms
104,840 KB
testcase_25 AC 138 ms
107,256 KB
testcase_26 AC 153 ms
109,708 KB
testcase_27 AC 161 ms
118,956 KB
testcase_28 AC 157 ms
119,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    try:
        import pypyjit
        pypyjit.set_param('max_unroll_recursion=-1')
    except:
        pass
    try:
        import sys
        sys.setrecursionlimit(10**7)
    except:
        pass
    from math import sqrt,sin,cos,tan,ceil,radians,floor,gcd,exp,log,log10,log2,factorial,fsum
    from heapq import heapify, heappop, heappush
    from bisect import bisect_left, bisect_right
    from copy import deepcopy
    import copy
    import random
    from collections import deque,Counter,defaultdict
    from itertools import permutations,combinations
    from decimal import Decimal,ROUND_HALF_UP
    #tmp = Decimal(mid).quantize(Decimal('0'), rounding=ROUND_HALF_UP)
    from functools import lru_cache, reduce
    #@lru_cache(maxsize=None)
    from operator import add,sub,mul,xor,and_,or_,itemgetter
    INF = 10**18
    mod1 = 10**9+7
    mod2 = 998244353
    
    #DecimalならPython
    
    
    '''
    回数を増やさないといけない
    %iの値によって
    
    最初から自分より大きい場合は無理
    '''
    
    N = int(input())
    A = list(map(int, input().split()))
    
    f = True
    ad = 0
    end = N
    for i in reversed(range(1,N+1)):
        if A[i-1] == 0 and f:
            continue
        if (A[i-1]+ad)%i != 0 or A[i-1]>i:
            print('No')
            exit()
        ad += (A[i-1]+ad)//i
        f = False
    
    print('Yes')
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
if __name__ == '__main__':
    main()
0