結果

問題 No.1219 Mancala Combo
ユーザー FromBooskaFromBooska
提出日時 2023-02-22 17:33:36
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 786 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 242,152 KB
最終ジャッジ日時 2024-07-22 18:56:17
合計ジャッジ時間 4,914 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
57,600 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 60 ms
76,032 KB
testcase_05 AC 56 ms
75,776 KB
testcase_06 AC 47 ms
64,768 KB
testcase_07 AC 59 ms
76,032 KB
testcase_08 AC 55 ms
75,776 KB
testcase_09 AC 40 ms
51,968 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 54 ms
75,648 KB
testcase_12 AC 45 ms
60,928 KB
testcase_13 AC 48 ms
68,480 KB
testcase_14 AC 37 ms
51,840 KB
testcase_15 AC 38 ms
52,096 KB
testcase_16 AC 37 ms
51,712 KB
testcase_17 TLE -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

# 和は不変量
# 終了時には全部=和が0にある
# そこから逆算すると一意に動きが決まる
# ++++0となる最初のゼロのところしか動かせない
# 0に和があるところから始めてAになればYes

N = int(input())
A = list(map(int, input().split()))
sumA = sum(A)
counts = [0]*(N+1)
counts[0] = sumA

#print(counts)

ans = 'No'
while True:
    found = False
    for i in range(0, N+1):
        if counts[i] != 0:
            counts[i] -= 1
        elif counts[i] == 0:
            if i == 0:
                break
            else:
                found = True
                counts[i] = i
                break
    #print(counts)
    if counts == [0]+A:
        ans = 'Yes'
        break
    if found == False:
        break
print(ans)


0