結果

問題 No.406 鴨等間隔の法則
ユーザー mesh1nek0x0mesh1nek0x0
提出日時 2018-08-03 22:16:20
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 429 bytes
コンパイル時間 41 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-09-19 17:27:40
合計ジャッジ時間 10,922 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
16,768 KB
testcase_01 WA -
testcase_02 AC 87 ms
12,288 KB
testcase_03 AC 79 ms
12,160 KB
testcase_04 AC 450 ms
22,528 KB
testcase_05 AC 203 ms
15,872 KB
testcase_06 AC 203 ms
16,128 KB
testcase_07 AC 211 ms
16,256 KB
testcase_08 AC 451 ms
22,656 KB
testcase_09 AC 486 ms
23,424 KB
testcase_10 AC 230 ms
16,768 KB
testcase_11 AC 405 ms
21,376 KB
testcase_12 AC 273 ms
17,920 KB
testcase_13 AC 249 ms
17,536 KB
testcase_14 WA -
testcase_15 AC 86 ms
12,160 KB
testcase_16 AC 100 ms
12,544 KB
testcase_17 AC 86 ms
12,288 KB
testcase_18 AC 90 ms
12,544 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 118 ms
13,056 KB
testcase_22 WA -
testcase_23 AC 284 ms
18,048 KB
testcase_24 WA -
testcase_25 AC 498 ms
23,680 KB
testcase_26 WA -
testcase_27 AC 307 ms
20,480 KB
testcase_28 AC 315 ms
23,552 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 488 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