結果

問題 No.1219 Mancala Combo
ユーザー donutholedonuthole
提出日時 2020-09-04 21:47:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 167 ms / 2,000 ms
コード長 824 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 31,284 KB
最終ジャッジ日時 2024-05-04 22:02:55
合計ジャッジ時間 3,363 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
11,520 KB
testcase_01 AC 35 ms
11,392 KB
testcase_02 AC 35 ms
11,520 KB
testcase_03 AC 34 ms
11,520 KB
testcase_04 AC 35 ms
11,520 KB
testcase_05 AC 35 ms
11,392 KB
testcase_06 AC 36 ms
11,392 KB
testcase_07 AC 34 ms
11,648 KB
testcase_08 AC 35 ms
11,520 KB
testcase_09 AC 35 ms
11,520 KB
testcase_10 AC 35 ms
11,520 KB
testcase_11 AC 36 ms
11,520 KB
testcase_12 AC 37 ms
11,520 KB
testcase_13 AC 37 ms
11,520 KB
testcase_14 AC 36 ms
11,520 KB
testcase_15 AC 36 ms
11,520 KB
testcase_16 AC 35 ms
11,520 KB
testcase_17 AC 79 ms
22,104 KB
testcase_18 AC 129 ms
25,532 KB
testcase_19 AC 74 ms
20,976 KB
testcase_20 AC 132 ms
26,060 KB
testcase_21 AC 73 ms
19,836 KB
testcase_22 AC 119 ms
24,024 KB
testcase_23 AC 88 ms
24,124 KB
testcase_24 AC 105 ms
22,200 KB
testcase_25 AC 73 ms
20,620 KB
testcase_26 AC 126 ms
25,264 KB
testcase_27 AC 95 ms
26,240 KB
testcase_28 AC 167 ms
31,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import collections
import bisect
import itertools
import decimal
import copy

# import numpy as np

# sys.setrecursionlimit(10 ** 6)
INF = 10 ** 20
MOD = 10 ** 9 + 7
# MOD = 998244353

ni = lambda: int(sys.stdin.readline().rstrip())
ns = lambda: map(int, sys.stdin.readline().rstrip().split())
na = lambda: list(map(int, sys.stdin.readline().rstrip().split()))
na1 = lambda: list(map(lambda x: int(x) - 1, sys.stdin.readline().rstrip().split()))


# ===CODE===


def main():
    n = ni()
    a = na()

    flg = True
    cnt = 0
    for i in range(len(a) - 1, -1, -1):
        if a[i] <= i + 1 and (a[i] + cnt) % (i + 1) == 0:
            cnt += (a[i] + cnt) // (i + 1)
        else:
            flg = False
            break

    print("Yes" if flg else "No")


if __name__ == '__main__':
    main()
0