結果

問題 No.1884 Sequence
ユーザー maimai
提出日時 2022-03-25 22:34:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 302 ms / 2,000 ms
コード長 389 bytes
コンパイル時間 318 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 34,048 KB
最終ジャッジ日時 2024-10-14 06:30:29
合計ジャッジ時間 10,134 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 84 ms
12,288 KB
testcase_04 AC 81 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 83 ms
12,160 KB
testcase_08 AC 84 ms
12,160 KB
testcase_09 AC 83 ms
12,032 KB
testcase_10 AC 300 ms
33,792 KB
testcase_11 AC 301 ms
33,920 KB
testcase_12 AC 163 ms
24,320 KB
testcase_13 AC 166 ms
25,472 KB
testcase_14 AC 163 ms
24,064 KB
testcase_15 AC 238 ms
29,568 KB
testcase_16 AC 302 ms
34,048 KB
testcase_17 AC 211 ms
28,928 KB
testcase_18 AC 222 ms
29,824 KB
testcase_19 AC 206 ms
27,392 KB
testcase_20 AC 223 ms
29,056 KB
testcase_21 AC 210 ms
28,160 KB
testcase_22 AC 228 ms
29,440 KB
testcase_23 AC 297 ms
33,920 KB
testcase_24 AC 298 ms
33,920 KB
testcase_25 AC 266 ms
33,792 KB
testcase_26 AC 270 ms
33,920 KB
testcase_27 AC 177 ms
28,800 KB
testcase_28 AC 173 ms
28,800 KB
testcase_29 AC 175 ms
28,800 KB
testcase_30 AC 190 ms
28,800 KB
testcase_31 AC 212 ms
26,880 KB
testcase_32 AC 266 ms
32,256 KB
testcase_33 AC 192 ms
30,848 KB
testcase_34 AC 194 ms
30,976 KB
testcase_35 AC 186 ms
29,056 KB
testcase_36 AC 189 ms
29,312 KB
testcase_37 AC 242 ms
33,920 KB
testcase_38 AC 242 ms
33,024 KB
testcase_39 AC 199 ms
28,288 KB
testcase_40 AC 205 ms
28,288 KB
testcase_41 AC 260 ms
30,720 KB
testcase_42 AC 276 ms
30,592 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

def lscan; gets.split.map(&:to_i); end

n = gets.to_i
aa = lscan.sort
bb = aa.filter{|a| a > 0}

if bb[0] == bb[-1]
  puts 'Yes'
  exit
end

d = bb.each_cons(2).map{|l,r| r-l }.reduce(&:gcd)
m = n - bb.size

bb.each_cons(2) do |l, r|
  l += d
  while l < r
    m -= 1
    l += d
    if m < 0
      puts 'No'
      exit
    end
  end
  if l != r
    puts 'No'
    exit
  end
end

puts 'Yes'
0