結果

問題 No.1884 Sequence
ユーザー simansiman
提出日時 2022-03-27 09:38:43
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 455 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 35,840 KB
最終ジャッジ日時 2024-11-06 04:46:00
合計ジャッジ時間 11,464 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,288 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 83 ms
12,288 KB
testcase_05 AC 84 ms
12,160 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 85 ms
12,160 KB
testcase_09 WA -
testcase_10 AC 308 ms
33,920 KB
testcase_11 AC 308 ms
34,048 KB
testcase_12 AC 202 ms
25,600 KB
testcase_13 AC 215 ms
27,008 KB
testcase_14 AC 209 ms
25,344 KB
testcase_15 AC 269 ms
30,848 KB
testcase_16 AC 302 ms
35,584 KB
testcase_17 AC 248 ms
30,720 KB
testcase_18 AC 250 ms
30,976 KB
testcase_19 AC 231 ms
28,672 KB
testcase_20 AC 257 ms
30,208 KB
testcase_21 AC 250 ms
29,568 KB
testcase_22 AC 262 ms
30,592 KB
testcase_23 AC 299 ms
35,584 KB
testcase_24 AC 302 ms
35,712 KB
testcase_25 AC 282 ms
33,792 KB
testcase_26 AC 279 ms
34,176 KB
testcase_27 AC 179 ms
28,928 KB
testcase_28 AC 182 ms
28,800 KB
testcase_29 AC 181 ms
28,800 KB
testcase_30 AC 238 ms
30,464 KB
testcase_31 AC 244 ms
27,392 KB
testcase_32 AC 281 ms
32,384 KB
testcase_33 AC 279 ms
35,840 KB
testcase_34 AC 279 ms
35,712 KB
testcase_35 AC 195 ms
28,928 KB
testcase_36 AC 250 ms
31,360 KB
testcase_37 AC 251 ms
34,048 KB
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 274 ms
31,232 KB
testcase_42 AC 294 ms
32,384 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

B = A.select { |x| x > 0 }
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