結果

問題 No.1219 Mancala Combo
ユーザー rlangevinrlangevin
提出日時 2023-02-23 22:34:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 177 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 102,552 KB
最終ジャッジ日時 2024-07-23 15:53:58
合計ジャッジ時間 3,688 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,868 KB
testcase_01 AC 36 ms
52,036 KB
testcase_02 AC 36 ms
52,832 KB
testcase_03 AC 37 ms
52,156 KB
testcase_04 WA -
testcase_05 AC 37 ms
52,888 KB
testcase_06 WA -
testcase_07 AC 38 ms
51,968 KB
testcase_08 WA -
testcase_09 AC 37 ms
52,488 KB
testcase_10 WA -
testcase_11 AC 37 ms
52,636 KB
testcase_12 WA -
testcase_13 AC 37 ms
53,212 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,084 KB
testcase_16 WA -
testcase_17 AC 71 ms
88,780 KB
testcase_18 WA -
testcase_19 AC 70 ms
87,220 KB
testcase_20 WA -
testcase_21 AC 66 ms
82,648 KB
testcase_22 WA -
testcase_23 AC 79 ms
96,852 KB
testcase_24 WA -
testcase_25 AC 67 ms
85,464 KB
testcase_26 WA -
testcase_27 AC 84 ms
101,224 KB
testcase_28 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
flag = 1
for i in range(1, N):
    if (A[i] - A[i - 1]) % i != 0:
        flag = 0
print("Yes") if flag else print("No")    
0