結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,880 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 30 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 29 ms
10,880 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 423 ms
34,164 KB
testcase_11 AC 434 ms
34,156 KB
testcase_12 AC 76 ms
13,556 KB
testcase_13 AC 80 ms
13,692 KB
testcase_14 AC 84 ms
14,264 KB
testcase_15 AC 255 ms
23,260 KB
testcase_16 AC 419 ms
34,280 KB
testcase_17 AC 151 ms
20,572 KB
testcase_18 AC 221 ms
24,664 KB
testcase_19 AC 172 ms
21,496 KB
testcase_20 AC 211 ms
20,960 KB
testcase_21 AC 160 ms
19,532 KB
testcase_22 AC 224 ms
22,088 KB
testcase_23 AC 405 ms
33,652 KB
testcase_24 AC 407 ms
34,284 KB
testcase_25 AC 425 ms
33,656 KB
testcase_26 AC 418 ms
34,264 KB
testcase_27 AC 87 ms
14,720 KB
testcase_28 AC 84 ms
14,788 KB
testcase_29 AC 84 ms
14,784 KB
testcase_30 AC 87 ms
14,788 KB
testcase_31 AC 154 ms
21,252 KB
testcase_32 AC 278 ms
33,028 KB
testcase_33 AC 191 ms
32,732 KB
testcase_34 AC 196 ms
32,736 KB
testcase_35 AC 95 ms
15,824 KB
testcase_36 AC 159 ms
26,520 KB
testcase_37 AC 188 ms
32,732 KB
testcase_38 AC 186 ms
33,920 KB
testcase_39 AC 113 ms
18,624 KB
testcase_40 AC 122 ms
19,532 KB
testcase_41 AC 334 ms
28,832 KB
testcase_42 AC 332 ms
28,836 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(0)

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