結果

問題 No.1219 Mancala Combo
ユーザー FromBooskaFromBooska
提出日時 2023-04-19 18:46:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 589 bytes
コンパイル時間 203 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 103,680 KB
最終ジャッジ日時 2024-10-14 20:35:56
合計ジャッジ時間 3,595 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,096 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 40 ms
51,456 KB
testcase_04 AC 40 ms
51,584 KB
testcase_05 AC 41 ms
51,968 KB
testcase_06 AC 40 ms
51,584 KB
testcase_07 AC 44 ms
51,968 KB
testcase_08 AC 40 ms
51,968 KB
testcase_09 AC 40 ms
51,840 KB
testcase_10 AC 40 ms
51,840 KB
testcase_11 AC 40 ms
51,712 KB
testcase_12 AC 40 ms
51,968 KB
testcase_13 AC 41 ms
51,584 KB
testcase_14 AC 40 ms
51,712 KB
testcase_15 AC 40 ms
51,840 KB
testcase_16 AC 40 ms
51,456 KB
testcase_17 AC 81 ms
89,856 KB
testcase_18 AC 82 ms
90,368 KB
testcase_19 AC 77 ms
86,400 KB
testcase_20 AC 86 ms
93,184 KB
testcase_21 AC 72 ms
82,560 KB
testcase_22 AC 79 ms
86,656 KB
testcase_23 AC 89 ms
97,024 KB
testcase_24 AC 74 ms
83,200 KB
testcase_25 AC 77 ms
85,504 KB
testcase_26 AC 83 ms
90,112 KB
testcase_27 AC 94 ms
102,528 KB
testcase_28 AC 98 ms
103,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# たとえば3のところにある数と、3超でnum=iの個数、の合計が3の倍数であれば消せる
# それがすべての数で満たされるか

N = int(input())
A = [0]+list(map(int, input().split()))

excess_test = False
for i in range(N, 0, -1):
    if A[i] > i:
        excess_test = True
if excess_test == True:
    print('No')
    exit()

multiple_test = True
exact = 0
for i in range(N, 0, -1):
    if (A[i]+exact)%i == 0:
        exact += (A[i]+exact)//i
    else:
        multiple_test = False
if multiple_test == True:
    print('Yes')
else:
    print('No')




0