結果

問題 No.1219 Mancala Combo
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-27 17:21:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 312 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 113,816 KB
最終ジャッジ日時 2024-06-30 12:47:00
合計ジャッジ時間 3,652 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,788 KB
testcase_01 AC 38 ms
52,624 KB
testcase_02 AC 37 ms
53,072 KB
testcase_03 AC 38 ms
53,000 KB
testcase_04 AC 38 ms
53,596 KB
testcase_05 AC 39 ms
52,768 KB
testcase_06 AC 38 ms
52,880 KB
testcase_07 AC 38 ms
52,960 KB
testcase_08 AC 39 ms
53,264 KB
testcase_09 AC 38 ms
52,464 KB
testcase_10 AC 38 ms
52,332 KB
testcase_11 AC 38 ms
52,532 KB
testcase_12 AC 38 ms
52,904 KB
testcase_13 AC 37 ms
53,912 KB
testcase_14 AC 38 ms
53,776 KB
testcase_15 AC 37 ms
52,892 KB
testcase_16 AC 38 ms
52,496 KB
testcase_17 AC 100 ms
109,860 KB
testcase_18 AC 98 ms
109,800 KB
testcase_19 AC 92 ms
112,628 KB
testcase_20 AC 102 ms
113,816 KB
testcase_21 AC 88 ms
106,468 KB
testcase_22 AC 94 ms
113,712 KB
testcase_23 AC 110 ms
110,608 KB
testcase_24 AC 84 ms
106,232 KB
testcase_25 AC 92 ms
111,916 KB
testcase_26 AC 97 ms
109,944 KB
testcase_27 AC 121 ms
111,736 KB
testcase_28 AC 118 ms
112,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
*a,=map(int,input().split())
a=[0]+a
for i in range(n+1):
    if i<a[i]:
        print('No')
        exit()

from itertools import accumulate
acc=list(accumulate(a))
modacc=[]
for i in range(1,n+1):
    modacc.append((acc[-1]-acc[i-1])%i)

if sum(modacc)==0:
    print('Yes')
else:
    print('No')
0