結果

問題 No.1884 Sequence
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-25 22:25:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 456 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,220 KB
実行使用メモリ 142,396 KB
最終ジャッジ日時 2024-10-14 06:21:47
合計ジャッジ時間 6,791 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 40 ms
52,452 KB
testcase_02 AC 41 ms
53,356 KB
testcase_03 AC 37 ms
52,512 KB
testcase_04 AC 38 ms
53,328 KB
testcase_05 AC 38 ms
53,212 KB
testcase_06 AC 38 ms
52,464 KB
testcase_07 WA -
testcase_08 AC 37 ms
52,984 KB
testcase_09 AC 38 ms
53,960 KB
testcase_10 AC 225 ms
142,396 KB
testcase_11 AC 214 ms
142,112 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 76 ms
92,996 KB
testcase_15 AC 135 ms
110,056 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 113 ms
110,456 KB
testcase_19 AC 105 ms
120,524 KB
testcase_20 AC 129 ms
121,180 KB
testcase_21 AC 113 ms
115,460 KB
testcase_22 AC 131 ms
110,140 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 176 ms
140,852 KB
testcase_26 AC 177 ms
142,396 KB
testcase_27 AC 73 ms
98,208 KB
testcase_28 AC 74 ms
98,420 KB
testcase_29 WA -
testcase_30 AC 74 ms
99,872 KB
testcase_31 AC 121 ms
116,840 KB
testcase_32 AC 181 ms
141,140 KB
testcase_33 AC 103 ms
105,384 KB
testcase_34 AC 101 ms
105,380 KB
testcase_35 AC 81 ms
100,092 KB
testcase_36 AC 109 ms
101,968 KB
testcase_37 AC 116 ms
109,084 KB
testcase_38 AC 114 ms
107,624 KB
testcase_39 AC 94 ms
105,352 KB
testcase_40 AC 96 ms
107,088 KB
testcase_41 AC 171 ms
128,160 KB
testcase_42 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import gcd
n = int(input())
A = sorted(list(map(int,input().split())))
zero = 0
nA = [0]
for i in range(n):
    if A[i] != 0:
        nA = A[i:]
        zero = i
        break

if len(set(nA))== 1:
    print("Yes")
    exit()

g = nA[1]-nA[0]
for a,na in zip(nA,nA[1:]):
    dif = na-a
    g = gcd(dif,g)

if g == 0:
    print("No")
    exit()

for a,na in zip(nA,nA[1:]):
    dif = na-a
    zero -= (dif//g)-1

print("No" if zero >= 0 else "No")
0