結果

問題 No.1884 Sequence
ユーザー roarisroaris
提出日時 2022-03-25 23:49:07
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 473 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 118,720 KB
最終ジャッジ日時 2024-10-14 08:06:00
合計ジャッジ時間 5,938 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,624 KB
testcase_01 AC 37 ms
53,048 KB
testcase_02 AC 37 ms
52,072 KB
testcase_03 RE -
testcase_04 AC 36 ms
52,444 KB
testcase_05 AC 37 ms
52,852 KB
testcase_06 AC 36 ms
52,932 KB
testcase_07 AC 37 ms
52,372 KB
testcase_08 AC 37 ms
52,508 KB
testcase_09 AC 37 ms
52,460 KB
testcase_10 AC 185 ms
118,196 KB
testcase_11 AC 184 ms
118,448 KB
testcase_12 AC 67 ms
89,084 KB
testcase_13 AC 67 ms
92,624 KB
testcase_14 AC 71 ms
92,204 KB
testcase_15 AC 116 ms
105,828 KB
testcase_16 AC 153 ms
118,208 KB
testcase_17 AC 93 ms
107,788 KB
testcase_18 AC 100 ms
106,348 KB
testcase_19 AC 93 ms
107,148 KB
testcase_20 AC 107 ms
105,208 KB
testcase_21 AC 100 ms
107,172 KB
testcase_22 AC 114 ms
105,516 KB
testcase_23 AC 153 ms
118,096 KB
testcase_24 AC 154 ms
118,720 KB
testcase_25 AC 154 ms
117,284 KB
testcase_26 AC 154 ms
118,404 KB
testcase_27 RE -
testcase_28 AC 72 ms
97,200 KB
testcase_29 AC 72 ms
95,896 KB
testcase_30 AC 72 ms
97,544 KB
testcase_31 AC 103 ms
103,796 KB
testcase_32 AC 148 ms
116,872 KB
testcase_33 AC 109 ms
115,932 KB
testcase_34 AC 106 ms
116,500 KB
testcase_35 AC 75 ms
99,732 KB
testcase_36 AC 107 ms
105,840 KB
testcase_37 AC 110 ms
116,100 KB
testcase_38 AC 109 ms
114,352 KB
testcase_39 AC 82 ms
103,816 KB
testcase_40 AC 83 ms
104,768 KB
testcase_41 AC 143 ms
110,636 KB
testcase_42 AC 143 ms
110,036 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 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