結果

問題 No.1219 Mancala Combo
ユーザー ああいいああいい
提出日時 2022-01-10 14:05:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 86 ms / 2,000 ms
コード長 230 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,452 KB
実行使用メモリ 105,812 KB
最終ジャッジ日時 2024-11-14 10:52:49
合計ジャッジ時間 2,854 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,828 KB
testcase_01 AC 37 ms
52,576 KB
testcase_02 AC 38 ms
53,728 KB
testcase_03 AC 38 ms
52,528 KB
testcase_04 AC 37 ms
52,156 KB
testcase_05 AC 37 ms
52,688 KB
testcase_06 AC 37 ms
52,920 KB
testcase_07 AC 38 ms
52,400 KB
testcase_08 AC 37 ms
52,248 KB
testcase_09 AC 38 ms
52,192 KB
testcase_10 AC 37 ms
52,308 KB
testcase_11 AC 38 ms
53,296 KB
testcase_12 AC 38 ms
52,020 KB
testcase_13 AC 38 ms
52,064 KB
testcase_14 AC 37 ms
52,732 KB
testcase_15 AC 38 ms
51,868 KB
testcase_16 AC 38 ms
52,876 KB
testcase_17 AC 67 ms
86,904 KB
testcase_18 AC 72 ms
92,112 KB
testcase_19 AC 63 ms
84,308 KB
testcase_20 AC 73 ms
94,240 KB
testcase_21 AC 59 ms
81,604 KB
testcase_22 AC 68 ms
89,228 KB
testcase_23 AC 72 ms
94,988 KB
testcase_24 AC 65 ms
85,932 KB
testcase_25 AC 62 ms
83,576 KB
testcase_26 AC 70 ms
91,840 KB
testcase_27 AC 77 ms
99,848 KB
testcase_28 AC 86 ms
105,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

Sum = 0
for i in reversed(range(1,N+1)):
    Sum += A[i-1]
    if A[i-1] <= i and Sum % i == 0:
        pass
    else:
        print('No')
        exit()
print('Yes')
0