結果

問題 No.1219 Mancala Combo
ユーザー H3PO4H3PO4
提出日時 2020-09-04 22:00:37
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 277 bytes
コンパイル時間 333 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 328,220 KB
最終ジャッジ日時 2024-11-26 12:48:53
合計ジャッジ時間 38,299 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,088 KB
testcase_01 AC 39 ms
303,264 KB
testcase_02 AC 43 ms
56,832 KB
testcase_03 AC 39 ms
305,340 KB
testcase_04 AC 66 ms
81,024 KB
testcase_05 AC 60 ms
327,648 KB
testcase_06 AC 54 ms
71,680 KB
testcase_07 AC 62 ms
328,220 KB
testcase_08 AC 57 ms
81,152 KB
testcase_09 AC 38 ms
302,156 KB
testcase_10 AC 40 ms
57,088 KB
testcase_11 AC 57 ms
324,588 KB
testcase_12 AC 47 ms
66,816 KB
testcase_13 AC 52 ms
320,812 KB
testcase_14 AC 39 ms
56,832 KB
testcase_15 AC 39 ms
303,800 KB
testcase_16 AC 39 ms
57,216 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

while A != [0] * N:
    for i in range(N):
        if A[i] == i + 1:
            A[i] = 0
            for j in range(i):
                A[j] += 1
            break
    else:
        print('No')
        exit()
print('Yes')
0