結果

問題 No.1884 Sequence
ユーザー ああいいああいい
提出日時 2022-03-25 21:28:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 175 ms / 2,000 ms
コード長 712 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 119,932 KB
最終ジャッジ日時 2024-10-14 05:17:48
合計ジャッジ時間 6,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,064 KB
testcase_01 AC 38 ms
52,524 KB
testcase_02 AC 37 ms
52,992 KB
testcase_03 AC 38 ms
52,820 KB
testcase_04 AC 37 ms
53,424 KB
testcase_05 AC 37 ms
51,992 KB
testcase_06 AC 37 ms
53,192 KB
testcase_07 AC 36 ms
52,676 KB
testcase_08 AC 37 ms
52,592 KB
testcase_09 AC 37 ms
52,400 KB
testcase_10 AC 175 ms
119,916 KB
testcase_11 AC 172 ms
119,932 KB
testcase_12 AC 67 ms
89,580 KB
testcase_13 AC 69 ms
92,904 KB
testcase_14 AC 72 ms
93,612 KB
testcase_15 AC 126 ms
107,464 KB
testcase_16 AC 156 ms
118,040 KB
testcase_17 AC 98 ms
109,352 KB
testcase_18 AC 106 ms
107,744 KB
testcase_19 AC 101 ms
108,944 KB
testcase_20 AC 117 ms
106,652 KB
testcase_21 AC 106 ms
108,364 KB
testcase_22 AC 123 ms
107,180 KB
testcase_23 AC 158 ms
117,888 KB
testcase_24 AC 158 ms
118,404 KB
testcase_25 AC 156 ms
117,252 KB
testcase_26 AC 160 ms
117,940 KB
testcase_27 AC 71 ms
97,440 KB
testcase_28 AC 73 ms
98,120 KB
testcase_29 AC 73 ms
97,740 KB
testcase_30 AC 74 ms
97,764 KB
testcase_31 AC 99 ms
105,072 KB
testcase_32 AC 146 ms
116,556 KB
testcase_33 AC 109 ms
116,256 KB
testcase_34 AC 108 ms
116,000 KB
testcase_35 AC 74 ms
100,600 KB
testcase_36 AC 107 ms
106,200 KB
testcase_37 AC 113 ms
116,412 KB
testcase_38 AC 112 ms
114,424 KB
testcase_39 AC 82 ms
104,820 KB
testcase_40 AC 83 ms
106,488 KB
testcase_41 AC 150 ms
110,184 KB
testcase_42 AC 150 ms
110,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int,input().split()))
l = []
count = 0
for a in A:
    if a == 0:
        count += 1
    else:
        l.append(a)
l.sort()
import sys
if len(l) <= 1:
    print('Yes')
    exit()
def gcd(a,b):
    if b == 0:return a
    while True:
        r = a % b
        a = b
        b = r
        if r == 0:return a
flag = False
for i in range(len(l)-1):
    if l[i] == l[i+1]:
        flag = True
        break
if flag:
    if l[0] == l[-1]:
        print('Yes')
    else:
        print('No')
    exit()
    
d = 0
for i in range(len(l)-1):
    d = gcd(d,l[i+1]-l[i])
tmp = 0
for i in range(len(l)-1):
    tmp += (l[i+1]-l[i]) // d - 1
if tmp <= count:
    print('Yes')
else:
    print('No')
0