結果

問題 No.406 鴨等間隔の法則
ユーザー mesh1nek0x0mesh1nek0x0
提出日時 2018-08-03 22:17:05
言語 Ruby
(3.3.0)
結果
AC  
実行時間 585 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 23,680 KB
最終ジャッジ日時 2024-07-07 12:29:25
合計ジャッジ時間 10,902 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 257 ms
17,024 KB
testcase_01 AC 85 ms
12,160 KB
testcase_02 AC 82 ms
12,032 KB
testcase_03 AC 83 ms
12,288 KB
testcase_04 AC 488 ms
22,656 KB
testcase_05 AC 219 ms
16,000 KB
testcase_06 AC 227 ms
16,128 KB
testcase_07 AC 227 ms
16,384 KB
testcase_08 AC 492 ms
22,400 KB
testcase_09 AC 518 ms
23,296 KB
testcase_10 AC 239 ms
16,896 KB
testcase_11 AC 415 ms
21,248 KB
testcase_12 AC 292 ms
17,920 KB
testcase_13 AC 268 ms
17,664 KB
testcase_14 AC 476 ms
21,888 KB
testcase_15 AC 93 ms
12,288 KB
testcase_16 AC 110 ms
12,416 KB
testcase_17 AC 93 ms
12,416 KB
testcase_18 AC 99 ms
12,544 KB
testcase_19 AC 115 ms
12,672 KB
testcase_20 AC 131 ms
12,928 KB
testcase_21 AC 131 ms
12,928 KB
testcase_22 AC 174 ms
14,208 KB
testcase_23 AC 299 ms
18,048 KB
testcase_24 AC 412 ms
20,864 KB
testcase_25 AC 534 ms
23,680 KB
testcase_26 AC 565 ms
23,680 KB
testcase_27 AC 328 ms
20,608 KB
testcase_28 AC 357 ms
23,680 KB
testcase_29 AC 583 ms
23,680 KB
testcase_30 AC 585 ms
23,552 KB
testcase_31 AC 536 ms
23,168 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

#!/bin/ruby
N = gets.chomp.to_i
kamos = gets.chomp.split(' ')
kamos_sorted = kamos.sort {|ele1, ele2| ele1.to_i <=> ele2.to_i }

if kamos.length != kamos_sorted.uniq.length
  puts 'NO'
else
  diff = kamos_sorted[1].to_i - kamos_sorted[0].to_i
  result = 'YES'
  for i in 1...kamos_sorted.length - 1 do
    if diff != (kamos_sorted[i + 1].to_i - kamos_sorted[i].to_i)
      result = 'NO'
      break
    end
  end
  puts result
end
0