結果

問題 No.1219 Mancala Combo
ユーザー FromBooskaFromBooska
提出日時 2023-02-22 21:38:54
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 869 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 103,664 KB
最終ジャッジ日時 2024-07-22 22:17:44
合計ジャッジ時間 3,603 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 41 ms
51,584 KB
testcase_04 AC 65 ms
75,648 KB
testcase_05 AC 65 ms
75,580 KB
testcase_06 AC 49 ms
64,128 KB
testcase_07 AC 62 ms
75,540 KB
testcase_08 AC 58 ms
76,140 KB
testcase_09 AC 40 ms
52,096 KB
testcase_10 AC 41 ms
51,872 KB
testcase_11 AC 58 ms
75,648 KB
testcase_12 AC 48 ms
60,416 KB
testcase_13 AC 51 ms
67,712 KB
testcase_14 AC 41 ms
51,840 KB
testcase_15 AC 40 ms
51,584 KB
testcase_16 AC 41 ms
51,840 KB
testcase_17 AC 74 ms
88,576 KB
testcase_18 WA -
testcase_19 AC 69 ms
85,376 KB
testcase_20 WA -
testcase_21 AC 66 ms
81,920 KB
testcase_22 WA -
testcase_23 AC 80 ms
96,640 KB
testcase_24 WA -
testcase_25 AC 70 ms
84,736 KB
testcase_26 WA -
testcase_27 AC 86 ms
101,248 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

if N >= 320:
    if sum(A[:N//10]) < sumA:
        print('No')
        exit()
        
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