結果

問題 No.1884 Sequence
ユーザー miscalcmiscalc
提出日時 2022-03-07 14:29:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 520 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 34,288 KB
最終ジャッジ日時 2024-07-22 09:31:08
合計ジャッジ時間 10,078 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 RE -
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,880 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 30 ms
10,752 KB
testcase_09 WA -
testcase_10 AC 408 ms
34,288 KB
testcase_11 AC 406 ms
34,280 KB
testcase_12 AC 76 ms
13,564 KB
testcase_13 AC 83 ms
13,820 KB
testcase_14 AC 77 ms
14,268 KB
testcase_15 AC 271 ms
23,392 KB
testcase_16 AC 403 ms
34,148 KB
testcase_17 AC 151 ms
20,572 KB
testcase_18 AC 218 ms
24,668 KB
testcase_19 AC 182 ms
21,496 KB
testcase_20 AC 215 ms
20,964 KB
testcase_21 AC 166 ms
19,556 KB
testcase_22 AC 227 ms
22,084 KB
testcase_23 AC 428 ms
32,736 KB
testcase_24 AC 428 ms
34,276 KB
testcase_25 AC 438 ms
32,732 KB
testcase_26 AC 423 ms
34,260 KB
testcase_27 AC 87 ms
14,788 KB
testcase_28 AC 86 ms
14,784 KB
testcase_29 AC 89 ms
14,784 KB
testcase_30 AC 88 ms
14,788 KB
testcase_31 WA -
testcase_32 WA -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 333 ms
28,836 KB
testcase_42 AC 318 ms
28,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys

n = int(input())
a = list(map(int, input().split()))

c = []
for i in range(n):
  if a[i] != 0:
    c.append(a[i])
k = len(c)
if k == 0:
  print('Yes')
  sys.exit(0)

c = sorted(c)
d = []
for i in range(k - 1):
  d.append(c[i + 1] - c[i])

zerocnt = d.count(0)
if zerocnt > 0:
  print('Yes' if zerocnt == k - 1 else 'No')
  sys.exit

g = 0
for i in range(k - 1):
  g = math.gcd(g, d[i])

need = 0
for i in range(k - 1):
  tmp = d[i] / g - 1
  need += tmp

print('Yes' if need <= n - k else 'No')
0