結果

問題 No.1884 Sequence
ユーザー roarisroaris
提出日時 2022-03-25 23:49:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 118,668 KB
最終ジャッジ日時 2024-10-14 08:06:54
合計ジャッジ時間 6,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,968 KB
testcase_01 AC 38 ms
52,480 KB
testcase_02 AC 37 ms
52,096 KB
testcase_03 AC 38 ms
51,840 KB
testcase_04 AC 38 ms
51,968 KB
testcase_05 AC 37 ms
52,096 KB
testcase_06 AC 38 ms
51,968 KB
testcase_07 AC 38 ms
52,352 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
51,712 KB
testcase_10 AC 187 ms
118,064 KB
testcase_11 AC 188 ms
118,212 KB
testcase_12 AC 67 ms
87,680 KB
testcase_13 AC 69 ms
91,264 KB
testcase_14 AC 73 ms
90,880 KB
testcase_15 AC 117 ms
105,600 KB
testcase_16 AC 157 ms
118,048 KB
testcase_17 AC 93 ms
108,000 KB
testcase_18 AC 99 ms
105,984 KB
testcase_19 AC 93 ms
106,868 KB
testcase_20 AC 109 ms
105,188 KB
testcase_21 AC 101 ms
107,264 KB
testcase_22 AC 113 ms
105,600 KB
testcase_23 AC 159 ms
118,012 KB
testcase_24 AC 154 ms
118,668 KB
testcase_25 AC 155 ms
117,112 KB
testcase_26 AC 157 ms
117,940 KB
testcase_27 AC 74 ms
95,872 KB
testcase_28 AC 74 ms
96,000 KB
testcase_29 AC 74 ms
96,000 KB
testcase_30 AC 73 ms
95,872 KB
testcase_31 AC 102 ms
103,680 KB
testcase_32 AC 148 ms
116,684 KB
testcase_33 AC 111 ms
116,028 KB
testcase_34 AC 111 ms
115,652 KB
testcase_35 AC 77 ms
98,304 KB
testcase_36 AC 107 ms
106,112 KB
testcase_37 AC 112 ms
116,164 KB
testcase_38 AC 110 ms
114,324 KB
testcase_39 AC 83 ms
103,424 KB
testcase_40 AC 84 ms
104,704 KB
testcase_41 AC 143 ms
109,960 KB
testcase_42 AC 144 ms
110,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from math import gcd

N = int(input())
A = list(map(int, input().split()))
l = [Ai for Ai in A if Ai>0]
l.sort()

if len(l)==0 or l[0]==l[-1]:
    exit(print('Yes'))
    
G = 0

for i in range(len(l)-1):
    if l[i]==l[i+1]:
        exit(print('No'))
        
    G = gcd(G, l[i+1]-l[i])

if G==0:
    exit(print('Yes'))
    
cnt = 0

for i in range(len(l)-1):
    cnt += (l[i+1]-l[i])//G-1

if cnt<=N-len(l):
    print('Yes')
else:
    print('No')
0