結果

問題 No.1219 Mancala Combo
ユーザー 👑 rin204rin204
提出日時 2022-07-04 15:33:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 199 bytes
コンパイル時間 709 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 105,168 KB
最終ジャッジ日時 2024-12-14 06:06:48
合計ジャッジ時間 2,919 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,892 KB
testcase_01 AC 39 ms
52,828 KB
testcase_02 AC 39 ms
52,484 KB
testcase_03 AC 39 ms
53,164 KB
testcase_04 AC 40 ms
52,632 KB
testcase_05 AC 39 ms
52,144 KB
testcase_06 AC 39 ms
53,164 KB
testcase_07 AC 40 ms
52,944 KB
testcase_08 AC 39 ms
52,264 KB
testcase_09 AC 39 ms
52,880 KB
testcase_10 AC 38 ms
52,984 KB
testcase_11 AC 40 ms
53,952 KB
testcase_12 AC 39 ms
53,308 KB
testcase_13 AC 38 ms
52,788 KB
testcase_14 AC 39 ms
51,948 KB
testcase_15 AC 39 ms
52,680 KB
testcase_16 AC 39 ms
53,212 KB
testcase_17 AC 69 ms
89,080 KB
testcase_18 AC 75 ms
91,492 KB
testcase_19 AC 66 ms
84,812 KB
testcase_20 AC 78 ms
93,680 KB
testcase_21 AC 63 ms
82,740 KB
testcase_22 AC 72 ms
87,104 KB
testcase_23 AC 77 ms
96,420 KB
testcase_24 AC 70 ms
83,932 KB
testcase_25 AC 65 ms
84,548 KB
testcase_26 AC 75 ms
90,728 KB
testcase_27 AC 81 ms
101,552 KB
testcase_28 AC 90 ms
105,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = [0] + list(map(int, input().split()))
add = 0
for i in range(n, 0, -1):
    A[i] += add
    if A[i] % i != 0:
        print("No")
        exit()
    add += A[i] // i
print("Yes")
0