結果

問題 No.406 鴨等間隔の法則
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2018-02-01 00:41:23
言語 Ruby
(3.3.0)
結果
AC  
実行時間 170 ms / 2,000 ms
コード長 228 bytes
コンパイル時間 49 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,072 KB
最終ジャッジ日時 2024-07-07 12:19:21
合計ジャッジ時間 4,632 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 99 ms
16,512 KB
testcase_01 AC 83 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 81 ms
12,160 KB
testcase_04 AC 125 ms
21,760 KB
testcase_05 AC 96 ms
15,744 KB
testcase_06 AC 96 ms
15,872 KB
testcase_07 AC 94 ms
15,872 KB
testcase_08 AC 119 ms
21,760 KB
testcase_09 AC 121 ms
22,656 KB
testcase_10 AC 95 ms
16,640 KB
testcase_11 AC 113 ms
20,608 KB
testcase_12 AC 99 ms
17,280 KB
testcase_13 AC 97 ms
17,152 KB
testcase_14 AC 149 ms
24,676 KB
testcase_15 AC 81 ms
12,416 KB
testcase_16 AC 88 ms
12,928 KB
testcase_17 AC 84 ms
12,544 KB
testcase_18 AC 83 ms
13,056 KB
testcase_19 AC 84 ms
12,928 KB
testcase_20 AC 87 ms
13,184 KB
testcase_21 AC 91 ms
13,184 KB
testcase_22 AC 94 ms
15,104 KB
testcase_23 AC 97 ms
17,792 KB
testcase_24 AC 138 ms
22,776 KB
testcase_25 AC 122 ms
22,784 KB
testcase_26 AC 170 ms
27,072 KB
testcase_27 AC 114 ms
19,584 KB
testcase_28 AC 122 ms
22,656 KB
testcase_29 AC 165 ms
27,048 KB
testcase_30 AC 168 ms
26,972 KB
testcase_31 AC 119 ms
22,272 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
x = gets.split.map(&:to_i)

unless x.length == x.uniq.length
  puts 'NO'
  exit
end

sorted_x = x.sort

satisfy = sorted_x[0..-2].zip(sorted_x[1..-1]).map { |a, b|
  (b - a).abs
}.uniq.size == 1

puts satisfy ? 'YES' : 'NO'
0