結果

問題 No.1884 Sequence
ユーザー simansiman
提出日時 2022-03-27 09:46:01
言語 Ruby
(3.3.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 548 bytes
コンパイル時間 537 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 43,020 KB
最終ジャッジ日時 2024-11-06 04:54:31
合計ジャッジ時間 11,400 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,160 KB
testcase_01 AC 87 ms
12,160 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 86 ms
12,160 KB
testcase_04 AC 86 ms
12,160 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 89 ms
12,288 KB
testcase_08 AC 88 ms
12,288 KB
testcase_09 AC 86 ms
12,160 KB
testcase_10 AC 353 ms
41,624 KB
testcase_11 AC 350 ms
41,364 KB
testcase_12 AC 207 ms
25,472 KB
testcase_13 AC 216 ms
27,008 KB
testcase_14 AC 207 ms
25,216 KB
testcase_15 AC 295 ms
38,912 KB
testcase_16 AC 351 ms
42,900 KB
testcase_17 AC 259 ms
34,816 KB
testcase_18 AC 276 ms
39,040 KB
testcase_19 AC 246 ms
35,840 KB
testcase_20 AC 285 ms
36,864 KB
testcase_21 AC 263 ms
33,408 KB
testcase_22 AC 289 ms
37,632 KB
testcase_23 AC 349 ms
43,020 KB
testcase_24 AC 342 ms
42,888 KB
testcase_25 AC 319 ms
41,172 KB
testcase_26 AC 315 ms
41,376 KB
testcase_27 AC 185 ms
28,928 KB
testcase_28 AC 183 ms
28,800 KB
testcase_29 AC 184 ms
28,928 KB
testcase_30 AC 239 ms
30,336 KB
testcase_31 AC 201 ms
32,768 KB
testcase_32 AC 267 ms
40,840 KB
testcase_33 AC 202 ms
33,152 KB
testcase_34 AC 205 ms
33,024 KB
testcase_35 AC 194 ms
29,184 KB
testcase_36 AC 207 ms
30,464 KB
testcase_37 AC 217 ms
35,200 KB
testcase_38 AC 219 ms
34,176 KB
testcase_39 AC 201 ms
28,928 KB
testcase_40 AC 200 ms
29,312 KB
testcase_41 AC 308 ms
38,500 KB
testcase_42 AC 324 ms
38,452 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i).sort

B = A.select { |x| x > 0 }

if B.uniq.size == 1
  puts 'Yes'
  exit
elsif B.size != B.uniq.size
  puts 'No'
  exit
end

zc = A.count(0)
range = B.each_cons(2).map { |a, b| b - a }.inject(&:gcd)

stack = []

until B.empty?
  b = B.shift
  stack << b

  if stack.size >= 2
    if stack[-1] - stack[-2] > range
      if zc > 0
        c = stack.pop
        stack << stack.last + range
        B.unshift(c)
        zc -= 1
      else
        puts 'No'
        exit
      end
    end
  end
end

puts 'Yes'
0