結果

問題 No.1884 Sequence
ユーザー kept1994kept1994
提出日時 2022-04-23 23:54:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 641 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,512 KB
実行使用メモリ 163,304 KB
最終ジャッジ日時 2024-06-25 08:52:46
合計ジャッジ時間 8,153 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,936 KB
testcase_01 AC 38 ms
53,152 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 37 ms
52,328 KB
testcase_04 AC 37 ms
52,560 KB
testcase_05 AC 37 ms
53,068 KB
testcase_06 AC 36 ms
53,060 KB
testcase_07 AC 36 ms
53,340 KB
testcase_08 AC 36 ms
54,164 KB
testcase_09 WA -
testcase_10 AC 232 ms
162,616 KB
testcase_11 AC 227 ms
163,056 KB
testcase_12 AC 63 ms
88,744 KB
testcase_13 AC 66 ms
92,752 KB
testcase_14 AC 70 ms
92,708 KB
testcase_15 AC 134 ms
107,424 KB
testcase_16 AC 190 ms
163,304 KB
testcase_17 AC 98 ms
109,444 KB
testcase_18 AC 122 ms
108,160 KB
testcase_19 AC 104 ms
108,592 KB
testcase_20 AC 124 ms
106,380 KB
testcase_21 AC 102 ms
107,788 KB
testcase_22 AC 130 ms
106,920 KB
testcase_23 AC 189 ms
163,040 KB
testcase_24 AC 187 ms
163,180 KB
testcase_25 AC 190 ms
162,388 KB
testcase_26 AC 193 ms
162,732 KB
testcase_27 AC 72 ms
97,108 KB
testcase_28 AC 72 ms
97,088 KB
testcase_29 AC 72 ms
98,632 KB
testcase_30 AC 72 ms
97,456 KB
testcase_31 AC 119 ms
102,432 KB
testcase_32 WA -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 130 ms
130,056 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 175 ms
144,000 KB
testcase_42 AC 172 ms
143,244 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
import sys
import math

def main():
    N = int(input())
    A = list(map(int, input().split()))
    aa = []
    zero = 0
    for i in A:
        if i != 0:
            aa.append(i)
        else:
            zero += 1
    aa.sort()
    diff = []
    g = 0
    if set(aa) == set([1]):
        g = 1
    else:
        for i in range(len(aa) - 1):
            diff.append(aa[i + 1] - aa[i])
            g = math.gcd(g, aa[i + 1] - aa[i])
    ans = 0
    for d in diff:
        ans += d // g - 1
    # print(ans)
    if ans <= zero:
        print("Yes")
    else:
        print("No")

if __name__ == '__main__':
    main()
0